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