홍준섭

commit echo.cpp

Showing 1 changed file with 15 additions and 0 deletions
1 +#include<iostream>
2 +#include<string>
3 +using namespace std;
4 +
5 +int main()
6 +{
7 + string str;
8 + while (1)
9 + {
10 + cin >> str;
11 + cout << str << endl;
12 + }
13 +
14 + return 0;
15 +}
...\ No newline at end of file ...\ No newline at end of file