#include <iostream>
#include <vector>
using namespace std;

int main() {
	// your code goes here
	
	vector<vector<int> > v;
	//vector<int> x = v[0];
	cout << sizeof(v) << " ";// << sizeof(x);
	return 0;
}