a = list(map(int,input().split())) if a[0] == a[1]: print(0) elif a[0] > a[1]: print('-'+str(a[0]-a[1])) else: print('+'+str(a[1]-a[0]))