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