use std::io; fn main() { let mut name = String::from("World"); io::stdin().read_line(&mut name).ok(); println!("Hello, {}", name); }