#include <iostream>
#include <string>
#include <vector>
using namespace std;
int main()
{
string word;
vector<string> v1;
//while (cin >> word)
//{
// v1.push_back(word);
//}
for (vector<int>::size_type ix = 0; ix != 10; ++ix)
{
v1.push_back("string");
}
cout << "*****************"<< endl;
for (vector<int>::size_type ix = 0; ix != v1.size(); ++ix)
{
cout << v1[ix] << endl;
}
cout << "*****************"<< endl;
for (vector<string>::iterator iter = v1.begin(); iter != v1.end(); ++iter)
{
cout << *iter << endl;
}
cout << "*****************"<< endl;
for (vector<string>::const_iterator iter = v1.begin(); iter != v1.end(); ++iter)
{
cout << *iter << endl;
}
cout << "*****************"<< endl;
//v1.push_back("string2");
//for (vector<string>::const_iterator iter = v1.begin(); iter != v1.end(); ++iter)
//{
// cout << *iter << endl;
//}
return 0;
}