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