use std::io::{self, BufRead}; fn main() { let stdin = io::stdin(); let mut strr=String::new(); let mut aim=String::new(); stdin.read_line(&mut strr).expect("faled"); stdin.read_line(&mut aim).expect("faled"); let low_strr=strr.to_lowercase(); ...