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