提交时间:2024-04-24 21:03:46
运行 ID: 46094
#include<bits/stdc++.h> using namespace std; bool pd(int x){ for(int i=2;i*i<=x;i++){ if(x%i==0) return 0; } return 1; } int main() { int n; cin>>n; if(pd(n)) cout<<"yes"; else cout<<"no"; return 0; }