#include
using namespace std;
bool abc(int x){
if(x==0||x==1)
return false;
for(int i=2;i<=x-1;i++)
if(x%i==0)
return false;
return true;
}
int main(){
int x;
scanf("%d",&x);
if(abc(x))
printf("yes");
else
printf("no");
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)