1 2 3 4 5 6
use std::io::stdin; fn main() { let s = stdin().lines().next().unwrap().unwrap(); println!("{s}"); }