newton/solutions/clang/4A.c

13 lines
166 B
C
Raw Normal View History

2025-01-17 19:41:20 +00:00
#include <stdio.h>
int main() {
int input;
scanf("%d", &input);
if (input % 2 == 0 && input != 2) {
printf("YES\n");
} else {
printf("NO\n");
}
}