main = getLine >>= putStrLn . sign . (\[x,y] -> y - x) . map read . words where sign x | x > 0 = "+" ++ show x | otherwise = show x