n = list(map(int,input().split())) ans = n[1]-n[0] if ans <= 0: print(ans) else: print("+"+str(ans))