위승진

echo program

Showing 1 changed file with 12 additions and 0 deletions
#include <iostream>
#include <string>
using namespace std;
// echo program
int main()
{
string text;
cin >> text;
cout << text << endl;
return 0;
}
\ No newline at end of file