A,B = map(int, input().split(' ')) A,B = sorted([A,B]) ans = ['Yes','No'][B > A*2] print(ans)