# coding=utf-8: n, m = map(int, input().split()) r = n - m if r == 0: print(str(0)) elif r > 0: print("+" + str(r)) elif r < 0: print("-" + str(r))