Codeforces-SolutionsA/Codes/4 A - Watermelon/4A.cpp

9 lines
145 B
C++
Raw Normal View History

2023-06-07 22:15:10 +08:00
#include<iostream>
using namespace std;
int main()
{
int w;
cin>>w;
if(w%2==0 && w>2) cout<<"YES"<<endl;
else cout<<"NO"<<endl;
}