#include <iostream> #include <map> using namespace std; int main(){ string s; map<char, int> mp; while(getline(cin, s)){ for(const auto& x : s){ if(x >= 'a' && x <= 'z') ++mp[x]; } } for(const auto& x : mp){ ...