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

int main() {
    vector<int> x = { 1, 2, 3 };

    int j = 0;
    for (auto it = x.begin(); it != x.end(); ++it) {
        x.push_back(j);
        j++;
        cout << j << " .. ";
    }

    return EXIT_SUCCESS;
}