김성원

echo implemented in local_A

Showing 1 changed file with 10 additions and 0 deletions
#include <iostream>
#include <string>
using namespace std;
int main()
{
string echo;
getline(cin, echo);
cout << echo;
}