a, b = map(int, raw_input().split()) if a < b: print '+' + str(b-a) else: print b-a