Information
- ID
- 109
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 1
- Tags
- (None)
- # Submissions
- 89
- Accepted
- 25
- Uploaded By
#include<bits/stdc++.h>
using namespace std;
bool isPrime(int y)
{ if(y<2)
{
return false;
}
for(int i=2;i<=y/i;i++)
{
if(y%i==0)
{
return false;
}
}
return true;
}
int main()
{
int n;
cin>>n;
if(isPrime(n)) cout<<"yes";
else cout<<"no";
return 0;
}