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