public static void Main()
Random random = new Random();
int[,] attendance = new int[12, 5];
for(int i = 0; i < 12; i++)
for(int j = 0; j < 5; j++)
attendance[i, j] = random.Next(0, 201);
int[] total = new int[5];
for(int i = 0; i < 5; i++)
for(int j = 0; j < 12; j++)
totalSum += attendance[j, i];
for(int i = 0; i < 5; i++)
Console.WriteLine("Total Attendence for Movie #" + (i + 1) + ": " + total[i]);