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