main () { int i; for(i=1;i<=300;++i) { if(i%3==0) printf("aho\n"); else if(i%10==3) printf("aho\n"); else if((i%100)/10==3) printf("aho\n"); else if(i>=30&&i<40) printf("aho\n"); else printf("%d\n", i); } }