#!/usr/bin/env python inval = [int(x) for x in input().split()] diff = inval[1] - inval[0] if diff == 0: print(0) else: print('{:+}'.format(diff))