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