//不分大小写被挖了坑,record #include <iostream> #include <string> #include <map> #include <algorithm> #include <cctype> using namespace std; int main(){ string in; map<char, int> cnts; char ch; getline(cin, in); cin>>ch; transform(in.begin(), in.end(), in.begin(), ::...