using System; class Program { public static void Main() { //Tömben tömb vagy egyenletlen tömb (minden sor más elemszámot tartalmazhat int[][] tomb = new int[2][]; tomb[0] = new int[3] {2, 5, 3}; tomb[1] = new int[3] {8, 4, 9}; Console.WriteLine(tomb[0][1]); } }