#include"stdio.h" main(){ int n,i,k; for(n=1;n<=100;n+=2){ k=sqrt(n); for(i=2;i<k;i++){ if(n%i==0) break; printf("\t%2d",n); }}
getch();}