fn main() { let args = std::env::args().skip(1); for (i, arg) in args.enumerate() { if i != 0 { print!(" "); } print!("{arg}"); } println!(); }