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