1 #![deny(warnings)]
2 
3 use std::io::{copy, stdin, stdout};
4 
main()5 fn main() {
6     let stdin_handle = stdin();
7     let stdout_handle = stdout();
8     copy(&mut stdin_handle.lock(), &mut stdout_handle.lock()).unwrap();
9 }
10