Wednesday, June 17, 2020

4A - Watermelon

#include <stdio.h>

int main(){

    int n;

    scanf("%d", &n);

    if(n>2 && n%2==0)
        printf("YES\n");
    else
        printf("NO\n");

    return 0;
}

No comments:

Post a Comment