Run ID:141999
提交时间:2025-12-29 17:00:18
#include<iostream> using namespace std; int main(){ for(int i=99;i>=11;i--){ if(i%11==0){ cout<<i<<" "; } } }