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