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