题解 | 牛牛学说话之-字符串
牛牛学说话之-字符串
https://www.nowcoder.com/practice/fa8bde2f612749c9813262a146488c9d
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
getline(cin,s);
cout << s << endl;
}
// 64 位输出请用 printf("%lld")

