use proconio::input; fn main() { input! { n: usize, } for i in (1..=n).rev() { for _ in 0..i { print!("{n}"); } println!(); } }