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

int main(void) {
	vector< int > bob(10);
	unsigned long limit = 102400000;
	unsigned long i = 0;

	for (i = 0; i < limit; i++) {
  		bob.push_back(i);

		if (i % 1000000 == 0) {
			cout << i << endl; 
		}
	}
	
	cout << "Final size of the vector: " << bob.size() << endl; 

	exit(0);
}

