#include <iostream> #include <string> using namespace std; int main() { string input; getline(cin, input); cout << "You entered: " << input << endl; }