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