1234567
vector<string> hello; hello.push_back("hi"); hello.push_back("hey"); string y(hello.begin(),hello.end()); cout<<y<<endl;
123
string y; for (string & s : hello) y += s;