#include <iostream> using namespace std; int main() { string s1, s2; while(cin >> s1 >> s2){ cout << (s1 + s2) << endl; } } 这种可以吗