진재영

Echo program added

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