params = input().split(' ')
a = int(params[0])
b = int(params[1])
if ((a * 2) < b) or ((b * 2) < a):
	print('No')
else:
	print('Yes')