Yunhee Lim

Add echo.cpp

Showing 1 changed file with 13 additions and 0 deletions
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
cout << "Enter: ";
getline(cin, s);
cout << s << endl;
return 0;
}
\ No newline at end of file