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