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