# coding: utf-8 def main(): a, b = map(int, input().split(' ')) dx = b-a print(dx if dx <= 0 else '+{}'.format(dx)) if __name__ == '__main__': main()