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