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