Watermelon | Problem - 4A - Codeforces | C


Problem Link: https://codeforces.com/problemset/problem/4/A 

Solution:

#include<stdio.h>
int main(){
    int a;
    scanf("%d",&a);
    if(a%2==0 && a!=2){
        printf("YES\n");
    }
    else printf("NO\n");
    return 0;
}

Post a Comment

Post a Comment (0)

Previous Post Next Post