김건우

echo.cpp

Showing 1 changed file with 17 additions and 0 deletions
#include<iostream>
using namespace std;
void echo() {
while(true) {
string a;
cin >> a;
cout << a << endl;
}
}
int main() {
echo();
return 0;
}
\ No newline at end of file