12345
std::vector<std::vector<std::string>> text = { {"asd", "cdf"}, {"bgh", "qwe"} };
12
string text[][2] = { { "asd", "cdf" }, { "bgh", "qwe" } }; cout << text[0][0] << text[1][1];