송민석

Added echo.cpp

Showing 1 changed file with 14 additions and 0 deletions
#include <iostream>
#include <string>
using namespace std;
int main(){
string str;
while(1){
cout << "Implements echo program\nInput >> ";
cin >> str;
cout << "Output >> " << str << endl;
}
return 0;
}