#include<iostream>
#include<cmath>
usingnamespace std;
void gl1(){
int k;//amount of columns
cout << "Write down the number of columns" << endl;
cin >> k;
int r = 3;//amount of rows
//Dynamic memory allocation
int **T = newint *[r];
for (int i = 0; i < r; ++i)
T[i] = newint[k];
for (int i = 0; i < k; i++)
{
int a=0, b=0, c=0;
cin >> a;
cin >> b;
cin >> c;
T[i][0] = a;
T[i][1] = b;
T[i][2] = c;
}
}
int main(){
gl1();
return 0;
}