using System;
public class Program
{
public static void Main()
int[][][] T = new int[][][]
new int[][] {
new int[]{0,1,0},
new int[]{1,1,1},
new int[]{0,0,0}
},
new int[][]{
new int[]{0,1,1},
new int[]{0,1,0}
new int[]{0,0,0},
new int[]{1,1,0},
}
};
int position = 0;
int[][] activePiece = T[position];
foreach(int[] row in activePiece)
foreach(int col in row)
Console.Write(col);
Console.WriteLine("");