#include <iostream> #include <string> #include<unordered_map> #include<queue> using namespace std; int main() { string str; string b; queue<string> que; unordered_map<string, int> unordered_map; while (cin >> str >> b) { // 注意 whil...