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