How to input vector of vector when we just have the number of vectors and size of each vector. Elements are to be taken as input from user.
When the elements are already known it is simply like this-
vector<vector > a{ {12,3,4,1,5}, {2,5,6,24,7} ,{16,73,8,1} };
But when we just know the number of vectors to be made and size of each vector, then how can it be written?
