#include #include using namespace std; int main() { string tmp; vector res; while(cin >> tmp) // 一直读 { res.push_back(tmp); if(cin.get() == '\n') // 通过判断是否换行 { sort(res.begin(),res.end()); for(auto s : res) cou...