using System; public class Exercise30 { public static void Main() { int[,] arr1 = new int[50,50]; int[,] brr1 = new int[50,50]; int i, j, r1, c1, r2, c2, flag =1; Console.Write("\n\nAccept two matrices and check whether they are equal :\n "); Console.Write("-----------------------------------------------------------\n"); Console.Write("Input the number of rows in the 1st matrix : "); r1 = Convert.ToInt32(Console.ReadLine()); Console.Write("Input the number of columns in the 1st matrix : "); c1 = Convert.ToInt32(Console.ReadLine()); Console.Write("Input the number of rows in the 2nd matrix : "); r2 = Convert.ToInt32(Console.ReadLine()); Console.Write("Input the number of columns in the 2nd matrix : "); c2 = Convert.ToInt32(Console.ReadLine()); Console.Write("Input elements in the first matrix :\n"); for(i=0; i