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