#include <bits/stdc++.h>
using namespace std;


int main() {
	vector<int> V;
	V.push_back(1);
	cout << V.size() << endl;
	cout << V.capacity() << endl;
	
	const int &m = 10;
	int n = 10;
	// your code goes here
	return 0;
}