Codeforces 4A Watermelon

题目链接

http://codeforces.com/problemset/problem/4/A

#include<iostream>
using namespace std;

int main()
{
    int num;
    cin>>num;
    if(num%2==0&&num!=2)
    {
        cout<<"YES";
    }else
    {
        cout<<"NO";
    }


    return 0;
}

 

posted @ 2018-06-17 11:37  CMlhc  阅读(246)  评论(0编辑  收藏  举报