use proconio::input; fn main() { input! { n: usize, s: String, } let i = s.chars().position(|c| c == 'c').unwrap(); println!("UEC{}", &s[i+1..]); }