def candy(A, B): if A > B * 2 or B > A * 2: print("No") else: print("Yes") A,B = map(int, input(). split()) candy(A, B)