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