Facebook
From Hrishikesh Saha, 1 Year ago, written in Python.
Embed
Download Paste or View Raw
Hits: 68
  1. w = int(input())
  2.  
  3.  
  4. if w%2 == 0 and w != 2:
  5.    print("YES")
  6.  
  7.  
  8. else:
  9.     print("NO")