#include <iostream>
using namespace std;

const int M = 4;
const int N = 3; 
int a[M] [N];

void czytaj_dwa_wymiary()
{
for(int i = 0; i < M; i++)	
	for(int j = 0; j < N; j++)	
		cin >> a[i][j];
}

int main()
{
	czytaj_dwa_wymiary();
	return 0;
}






