그대로 출력하기
#include <iostream> #include <string> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); string input; while (1) { getline(cin, input); if (input == "") break; cout << input << "\n"; } return 0; }