fn read() -> Vec { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); s.trim().split_whitespace().map(|s| String::from(s)).collect() } fn run() { let t = read()[0].parse::().unwrap(); for _ in 0..t { let n = read()[2].parse::().unwrap(); println!("Hitsuji ga {} hiki", n + 1); } } fn main() { run(); }