#include <iostream>
using namespace std;
int main() {
int matriz[3][4];
int L, C;
// inserir os valores pelo teclado
for(L=0;L<3;L++)
{
for(C=0;C<4;C++)
{
cin>>matriz[L][C];
}
}
// for que imprime os valores da matriz
for(L=0;L<3;L++)
{
for(C=0;C<4;C++)
{
cout<<matriz[L][C]<<" ";
}
cout << "\n";
}
return 0;
}