#include <iostream>
// Nota el uso del namespace
using namespace std;
int main()
{
string nombre[3];
int x, y;
for (x = 0; x <= 2; x++)
{
cout << "inserte nombre " << x + 1;
cin >> nombre[x];
}
for (y=0; y<=2; y++)
{
cout << "\n" << nombre[y] << "\n";
}
system ("pause");
return 0;
}