A, B = map(int, input().strip().split(' ')) A, B = max([A, B]), min([A, B]) if A > B * 2: print('No') else: print('Yes')