i = input().split() i1 = int(i[0]) i2 = int(i[1]) if i1 < i2: print("+" + str(int(i2 - i1))) else: print(int(i1 - i2))