5 lines
93 B
Text
5 lines
93 B
Text
use std::io;
|
|
|
|
fn main() {
|
|
io::copy(&mut io::stdin().lock(), &mut io::stdout().lock());
|
|
}
|