diff --git a/solutions/clang/4A.c b/solutions/clang/4A.c new file mode 100644 index 0000000..1d1d610 --- /dev/null +++ b/solutions/clang/4A.c @@ -0,0 +1,12 @@ +#include + +int main() { + int input; + scanf("%d", &input); + + if (input % 2 == 0 && input != 2) { + printf("YES\n"); + } else { + printf("NO\n"); + } +}