#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<int> v(10);
cout<<"Size of v = "<<v.size()<<endl;
cout<<"Capacity of v = "<<v.capacity()<<endl;
v.resize(100);
cout<<"After resizeing:"<<endl;
cout<<"Size of v = "<<v.size()<<endl;
cout<<"Capacity of v = "<<v.capacity()<<endl;
getchar();
return 0;
}