using System;
public class Program
{
public static void Main()
int [,] a = {
{1,5,9},
{2,6,10},
{3,7,11},
{4,8,12} };
int max = a[0,0];
for (int i=0; i< 4; i++)
for (int j=0;j< 3; j++)
if( a[i,j]> max) max= a[i,j];
}
Console.Write("Най-голямата стойност на елемент от масива е "+ max);
}}