use proconio::{fastout, input}; #[fastout] fn main() { input! { n: usize, } for _ in 0..n { println!("Hello world!"); } }