김건우

echo.cpp

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