use proconio::input; fn main() { input! { mut i: usize, }; i -= 1; let ans: char = "IGNITION".chars().nth(i).unwrap(); println!("{}", ans); }