Z1woo

echo program

Showing 1 changed file with 15 additions and 0 deletions
1 +#include<iostream>
2 +#include<string>
3 +
4 +using namespace std;
5 +
6 +
7 +int main(){
8 + string echo;
9 + cout << "Please enter some text:\n";
10 + cin >> echo;
11 + cout << echo;
12 +
13 + return 0;
14 +}
15 +