int main() // 读掉回车符{ int n; int i; scanf("%d", &n); getchar();// 读入回车符 for (i = 0; i < n; i++) { process(); } return 0;}