public static void Main()
Console.WriteLine("Въведете брой редове: ");
int n = int.Parse(Console.ReadLine());
Console.WriteLine("Въведете брой колони: ");
int m = int.Parse(Console.ReadLine());
Console.WriteLine("Въведете елементите на масива: ");
int[,] array = new int[n, m];
for (int row = 0; row < array.GetLength(0); row++)
for (int col = 0; col < array.GetLength(1); col++)
array[row, col] = int.Parse(Console.ReadLine());
Console.WriteLine("Елементите на масива са:");
for (int row = 0; row < array.GetLength(0); row++)
for (int col = 0; col< array.GetLength(1); col++)
Console.WriteLine(array[row, col]);
for (int row = 0; row < array.GetLength(0); row++)
for (int col = 0; col < array.GetLength(1); col++)
int currentElement = array[row, col];
sum = sum + currentElement;
Console.WriteLine("Сумата на елементите на масива е: {0}", sum);