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