fn main() { let mut p = String::new(); std::io::stdin().read_line(&mut p).ok(); let p: &str = p.trim(); println!("{}", p); }