import Control.Applicative ((<$>)) import Text.Printf (printf) main :: IO () main = do [a, b] <- map (read :: String -> Int). words <$> getLine s <- getLine printf "%d %s\n" (a + b) s