solutions: 4A

This commit is contained in:
Muhammad Nauman Raza 2025-01-17 19:41:20 +00:00
parent bc2ef0e085
commit d65ff2ff7f
Signed by: devraza
GPG key ID: 91EAD6081011574B

12
solutions/clang/4A.c Normal file
View 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");
}
}