public class MultipilcationOfMatrices
public static void Main()
{ int[,] arr1=new int[50,50];
int[,] arr2=new int[50,50];
int[,] arr3=new int[50,50];
Console.WriteLine("Enter the elements of first matrix:");
arr1[i,j]=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the elements of second matrix:");
arr2[i,j]=Convert.ToInt32(Console.ReadLine());
Console.Write(arr3[i,j] +" ");