#include int main() { int i = 100; while(i <= 200) { if(i % 3 != 0) { printf("%d\n", i); } i++; } return 0; }