#include
using namespace std;
int main()
{
int N,a,c=0;
bool fine= true;
cout
cin>> N;
for (int i=0; i
for (int y=1; y
if (a%y==0)
c= c+1;
if (c>2){
fine= false;
}
}
if (c>2)
break;
c=0;
}
if (fine)
cout
else
cout
}