#include<stdio.h> main() { int i; int j; for(i=100;i<=200;i++) { for(j=2;j<=i-1;j++) { if(i%j==0) break; } if(i==j) printf("%d ",i); } return 0; }