#include <iostream>
#include <vector>

using namespace std;

void f(const std::vector<int> &arr)
{
	for(const auto &v: arr)	
       cout << v << " ";
}

int main() 
{
    f({1,2,3,4,5});
	return 0;
}