https://www.acmicpc.net/problem/11718
getline을 이용하면 쉽게 풀 수 있다.
#include <iostream>
#include <string>
using namespace std;
int main(){
string text;
while (true)
{
getline(cin, text);
if(text == "")
break;
cout << text <<endl;
}
return 0;
}
scanf printf 를 이용하여 풀려 했는데 더 쉬운 방법이 있었따 . .
다각으로 접근하자 !