ahamed210

Untitled

May 10th, 2020
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4.     int w;
  5.     scanf("%d",&w);
  6.     if(w % 2 == 0 && w>2)
  7.         printf("YES\n");
  8.     else
  9.         printf("NO\n");
  10.  
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment