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