n = int(input())
if n < 150:
	print("NO")
elif 150 <= n:
	print("YES")