#include<iostream>
using namespace std;
int main()
{
    int a;
    cin>>a;
    if(a>2&&a%2==0)cout<<"YES, you can divide the watermelon into two even parts.";
    else cout<<"NO, you can't divide the watermelon into two even parts.";
}