n = int(input())
if n%2==0 and n>50:
    print("yes")
else:
    print("no")