# 入力を受け取る A, B = map(int, input().split()) # AliceとBobが文句を言わない条件をチェックする if A <= 2 * B and B <= 2 * A: print("Yes") else: print("No")