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

int main() {
	vector<int> v(50);
	cout<<sizeof(v)<<endl;
	return 0;
}