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

class A
{
	public:
	A(int i)
	{
		cout<<"Called"<<endl;
	}
};

int main()
{
	vector<A> v(5,A(1));
	return 0;
}	