import Control.Applicative main :: IO () main = do [x, y] <- map read . words <$> getLine s <- getLine putStrLn $ show (x + y) ++ " " ++ s