old, new = (int(i) for i in input().split()) if new > old: print("+" + str(new - old)) else: print(new - old)