main = do n <- getLine let [x,y] = map read $ words n :: [Int] s <- getLine putStrLn $ show (x+y) ++ " " ++ s