# 读取输入的整数
n = int(input())

# 判断是否为牛妹数(偶数且大于50)
if n > 50 and n % 2 == 0:
    print("yes")
else:
    print("no")