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