echo.rs 127 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 use std::io; fn main() { let mut input = String::new(); io::stdin().read_line(&mut input); print!("{}", input); }