# -*- coding: utf-8 -*- a,b = map(int,input().split()) if a > b: print("-" + str(a-b)) elif a == b: print(0) else: print("+" + str(b-a))