w = int(input())
if w % 2:
print("NO")
elif w == 2:
print("NO")
else:
print("YES")
here is my code, does anyone have recommendations to make it faster
edit; why the downvotes, where is a place i can discuss my code and figure out improvement.