# 入力を受け取る A, B = map(int, input().split()) print(A,B) # 分け方に文句を言わないかどうか判定する if A >= 2 * B or B >= 2 * A: print("Yes") else: print("No")