def main(): a, b = map(int, input().split()) if b < 0: b *= -1 if a < b: print("Yes") else: print("No") if __name__ == "__main__": main()