import sys,binascii h = binascii.crc32((sys.stdin.read()+"0"*2).encode("utf-8")) if h & 1: print("YES") else: print("NO")