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