김성원

echo implemented in local_A

Showing 1 changed file with 10 additions and 0 deletions
1 +#include <iostream>
2 +#include <string>
3 +using namespace std;
4 +int main()
5 +{
6 + string echo;
7 + getline(cin, echo);
8 + cout << echo;
9 +
10 +}