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