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