0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:45:26 +00:00

CF4A Watermelon

R38988487
This commit is contained in:
Baoshuo Ren 2020-09-28 20:35:20 +08:00 committed by Baoshuo Ren
parent bffdf49fac
commit 938465fff6
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

12
problem/CF4A/CF4A.cpp Normal file
View File

@ -0,0 +1,12 @@
// R38988487
#include <bits/stdc++.h>
using namespace std;
int main() {
int x;
cin >> x;
cout << (x == 2 ? "NO" : (x % 2 ? "NO" : "YES")) << endl;
return 0;
}