1234
std::vector< std::vector<int> > vv; vv.push_back(std::vector<int>()); vv[0].push_back(7); std::cout << vv[0][0];