//土尔逊Torson 编写于2023/06/14 #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <cstdio> #include <string> #include <map> using namespace std; int main() { int n, m; while (scanf("%d%d", &n, &m) != EOF) { map<int, int> bookFriend; map<int, int> bookCount; f...