A, B = map(int, input().split()) min, max = sorted([A, B]) if max > min*2: print("No") else: print("Yes")