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