main = do n <- readLn let ans = map (\i -> concat $ replicate i (show n)) [1..n] putStrLn $ unlines $ reverse ans