12 lines
166 B
C
12 lines
166 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int input;
|
|
scanf("%d", &input);
|
|
|
|
if (input % 2 == 0 && input != 2) {
|
|
printf("YES\n");
|
|
} else {
|
|
printf("NO\n");
|
|
}
|
|
}
|