a, b=map(int,input().split()) d = b - a if d > 0: print("{:+}".format(d)) else: print(d)