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