Yunhee Lim

Add echo.cpp

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