#include <iostream>
#include
using namespace std;
int main() {
string word;
while (1)
{
getline(cin, word);
if (word == "")
break;
cout << word << '\n';
}
}
'알고리즘' 카테고리의 다른 글
백준 C++ 11720번 (0) | 2017.08.15 |
---|---|
백준 C++ 11719번 (0) | 2017.08.15 |
백준 C++ 10998번 (0) | 2017.08.15 |
백준 C++ 10871번 (0) | 2017.08.15 |
백준 C++ 10869번 (0) | 2017.08.15 |