use proconio::input; fn main(){ input!{ h: u32, _w: u32, c: [String; h], }; for s in c { println!("{}", s); println!("{}", s); } }