use proconio::input; fn main() { input! { n: usize, s: String, } let ans = if s.contains("404") { "Found" } else { "NotFound" }; println!("{ans}"); }