using System;
public class Program
{
public static void Main()
int[] egyd = new int[]; // Egydimenziós tömb
int[,] ketd = new int[10,10]; // Kétdimenziós tömb
int[,,] haromd = new int [10,10,10]; // Háromdimenziós tömb
}