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