Sunday, April 17, 2016

CF: Watermelon

#include<iostream>

using namespace std;

int main()
{
 long long a;
 
 cin>>a;
 if(a<=2 || a%2!=0) cout<<"NO"<<endl;
 else cout<<"YES"<<endl;
 return 0;
}

No comments:

Post a Comment

Thank you for commenting. Please wait for response :)