A,B=map(int,input().split())
ans="Yes"
if A*2<B:
	ans="No"
if B*2<A:
	ans="No"
print(ans)