from math import floor A, B = map(int, input().split()) D = B - A plus = '' if D > 0: plus = '+' print(plus + str(D))