# input A,B = map(int,input().split()) # output if A <= 2*B and B <= 2*A: print('Yes') else: print('No')