use proconio::input; fn main() { input! { s: [String; 3], } for x in s { print!("{}", &x[..1].to_ascii_uppercase()); } println!(); }