a, b = map(int, input().split())

if a * 2 < b or b * 2 < a:
	print("No")
	exit()

print("Yes")