fn main() { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); let n: u8 = s.trim().parse().unwrap(); for _ in 0..n { println!("Hello! You're new here, right? It's nice to meet you."); } }