use proconio::{input, marker::Bytes}; fn main() { input! { s: Bytes, } let t = s.iter().map(|e| (e ^ 32) as char).collect::(); println!("{}", t); }