Codeforces-SolutionsA/Codes/4 A - Watermelon/4A.cpp
2023-12-31 14:54:40 +06:00

9 lines
145 B
C++

#include<iostream>
using namespace std;
int main()
{
int w;
cin>>w;
if(w%2==0 && w>2) cout<<"YES"<<endl;
else cout<<"NO"<<endl;
}