main = do r <- map read . words <$> getLine let d = (r !! 1) - (r !! 0) putStr $ if d > 0 then "+" else "" print d