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