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