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