송민석

Added echo.cpp

Showing 1 changed file with 14 additions and 0 deletions
1 +#include <iostream>
2 +#include <string>
3 +using namespace std;
4 +
5 +int main(){
6 + string str;
7 + while(1){
8 + cout << "Implements echo program\nInput >> ";
9 + cin >> str;
10 + cout << "Output >> " << str << endl;
11 + }
12 +
13 + return 0;
14 +}