#include <stdio.h>#include <math.h>
void main(){ int i,j,count=0,flag;
for( i=100;i<200;i++) { for(j=2;j<=sqrt(i);j++) { flag=1; if(i%j==0) { flag=0; break; } } if(flag) { if(count%5==0) printf("\n"); count++; printf("%5d",i); }
}