A,B = map(int,input().split()) ans = 'Yes' if 2*A < B or 2*B < A: ans = 'No' print(ans)