a, b = map(int, input().split()) dif = b - a if dif > 0: print('+' + str(dif)) else: print(dif)