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