solutions: 4A
This commit is contained in:
parent
bc2ef0e085
commit
d65ff2ff7f
1 changed files with 12 additions and 0 deletions
12
solutions/clang/4A.c
Normal file
12
solutions/clang/4A.c
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
int input;
|
||||||
|
scanf("%d", &input);
|
||||||
|
|
||||||
|
if (input % 2 == 0 && input != 2) {
|
||||||
|
printf("YES\n");
|
||||||
|
} else {
|
||||||
|
printf("NO\n");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue