#include<stdio.h> void main() { int k,n; for (n=101;n <= 200;n++) { for(k=2;k<=n-1;k++) { if (n%k==0) break; if (k >= n) printf("%4d",n); } } }