1use read_write_pipe::*; 2use std::io; 3 4fn main() -> io::Result<()> { 5 let _ = io::stdout().write_reader(io::stdin())?; 6 Ok(()) 7}