#include
int main()
{
int i,j;
for(i=2;i<=50;i++)
for(j=2;j<=50;j++)
i%j==0; break;
}
if(i==j)
printf("%d\n",i);
本来是
if(i%j==0);break;