#include <iostream>
#include <vector>

using namespace std;

int main() {
	vector<int> v = {1,2,3,4};
	for(const auto x : {11,12,13,14})
	    v.push_back(x);
	for(const auto& x : v)
	    cout << x << ' ';
	return 0;
}