import sys

n = int(sys.stdin.readline())

if n % 2 == 0:
    print("NO")
else:
    print("YES")
  • 是% 不是/