a,b = map(int,input().split()) if 0.5 <= a/b <= 2: print("Yes") else: print("No")