#include<iostream> using namespace std; int main(){ int j,i; for(i=100;i<=200;i++){ if(i%3!=0){ cout<<i<<" "; } } cout<<endl; return 0; }