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