#include "stdio.h" main() { int i,j,t=0; for(i=1;i<10000;i++) for(j=1;j<=i;j++) {if(i%j==0) t=t+1; else if(t>2) continue; else if(t==2) printf("%d",i); } }