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