N = int(input().strip()) if N % 2 == 0: print("No") else: print("Yes")