vector<vector<int>> points = { {1, 3},{2, 6},{3,7} };
for (vector<vector<int>>::iterator it = points.begin(); it != points.end(); it++)
{
for (vector<int>::iterator itit = (*it).begin(); itit != (*it).end(); itit++)
{
cout << *itit << ends;
}
}