fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int w;
  5. scanf("%d",&w);
  6. if(w > 2 && w%2==0)
  7. printf("YES");
  8. else
  9. printf("NO");
  10. return 0;
  11. }
  12.  
  13.  
Success #stdin #stdout 0s 5284KB
stdin
8
stdout
YES