#include <iostream>
#include <string>
using namespace std;
int main()
{
string buffer;
cout << "introduzca un linea de texto" << endl;
getline(cin, buffer);
cout << buffer << endl;
system("pause");
return 0;
}