def main(): A, B = map(int, input().split()) rate = B - A if rate > 0: rate = '+' + str(rate) print(rate) main()