2 solutions
- 1
Information
- ID
- 12006
- Time
- 1000ms
- Memory
- 128MiB
- Difficulty
- 1
- Tags
- # Submissions
- 43
- Accepted
- 33
- Uploaded By
using namespace std;
int main(){
int x;
cin>>x;
if(x!=1&&x!=3&&x!=5)
cout<<"YES"<<endl;
else
cout<<"NO"<<endl;
return 0;
}