#include <iostream>
#include <vector>
int main(){
std::vector<std::vector<int>>MyVector;
std::cout << "Rows in the 2d vector: " << MyVector.size() <<
std::endl << "Collumns in the 1st row: " << MyVector[0].size() <<
std::endl;
return 0;
}