-- yukicoder My Practice -- author: Leonardone @ NEETSDKASU main = putStrLn . solve . map read . words =<< getLine solve [a, b] | a < b = "+" ++ diff | otherwise = diff where diff = show $ b - a