a, b = map(int, input().split()) s = b - a if s == 0: print("0") elif s < 0: print(str(s)) else: print("+"+ str(s))