#include <iostream> #include <string> using namespace std; int main() { string hello; cout << "say sth and i will repeat\n"; cin >> hello; cout << hello; return 0; }