위승진

echo program

Showing 1 changed file with 12 additions and 0 deletions
1 +#include <iostream>
2 +#include <string>
3 +using namespace std;
4 +
5 +// echo program
6 +int main()
7 +{
8 + string text;
9 + cin >> text;
10 + cout << text << endl;
11 + return 0;
12 +}
...\ No newline at end of file ...\ No newline at end of file