a, b = map(int, input().split(' ')) sa = b - a if sa <= 0: print(sa) else: print('+%d' % sa)