a, b = [int(c) for c in input().split()] if a*2 < b or b*2 < a: print("No") else: print("Yes")