#include <iostream>
#include <vector>

using namespace std;

int main() {
    vector<int> v;
    v.reserve(10);
    cout << v.size() << ' ' << v.capacity() << endl;
    v[4] = 5;
    cout << v.size() << ' ' << v.capacity() << endl;
}