#includeint main(void){ int b,c,d; for(b=3; b<100; b++) { for(c=2; c<(b/2+1); c++) { if(b%c==0) break; } if (c>b/2) printf("%d\t",b); } return 0;}