Run ID:110833

提交时间:2025-02-23 14:33:19

#include<bits/stdc++.h> using namespace std; int main(){ for(int i=1;i<=100;i++){ if(i%3==0){ } else{ cout<<i<<" "; } } }