#include <iostream>
#include <utility>
#include <array>
 
using namespace std;
 
int main() 
{
	// your code goes here
	for (const auto &x : std::move(std::array<int, 3>{1,2,3}))
	{
		std::cout << x << std::endl;
	}
 
	return 0;
}