Coding Test - cpp/String
[백준 11718: 그대로 출력하기] - C++
에드윈H
2021. 3. 5. 16:09
#include<iostream>
#include<string>
using namespace std;
int main() {
string str;
while (true) {
getline(cin, str);
if (str == "\0")
break;
cout << str << endl;
}
return 0;
}