#include <iostream>
#include <vector>
using std::vector;
using std::cout;
using std::endl;

int main() 
{
	constexpr size_t M=10;
	constexpr size_t N=12;
	constexpr int v=42;
	vector<vector<int>> alpha(M,vector<int>(N,v));
	for(const auto& i:alpha)
	{
		for(const auto& j:i)
		{
			cout << j << ' ';
		}
		cout << endl;
	}
	return 0;
}