题目简单,注意输出格式即可。
#include <bits/stdc++.h> using namespace std; string s; int main() { while(cin>>s) cout<<s<<" "; return 0; }