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