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

if max(a, b) > min(a, b) * 2:
    print("No")
    exit()

print("Yes")