박주영

add echo program

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