first codeforces(A. Watermelon)

 #include <bits/stdc++.h>

using namespace std;


int main()

{

    int w;

    scanf("%d",&w);

    if(w%2==0 && w!=2)

        {

            printf("YES");

        }

    else

        {

            printf("NO");

        }

    return 0;

}


Comments

Popular posts from this blog

Problem——50A. Domino piling——Codeforces

Euclid’s lemma