#include <iostream>
#include <vector>

using namespace std;

int main()
{
	vector<int> v {1, 2, 3, 4};

	for (x : v)
    	cout << x << endl;

	return 0;
}