public static void Main()
Console.WriteLine("Введите размер матрицы через пробел");
var Input1 = Console.ReadLine().Split(' ');
Row = Int32.Parse(Input1[0]);
Column = Int32.Parse(Input1[1]);
data = new double[Row, Column];
for (int i = 0; i < Row; i++)
Console.WriteLine($"Введите полные данные для строки {i+1} через пробел");
var Input2 = Console.ReadLine().Split(' ');
for (int a = 0; a < Column; a++)
data[i,a] = Convert.ToDouble(Input2[a]);
for (int i = 0; i < Row; i++)
for (int a = 0; a < Column; a++)
Console.Write(data[i,a]);
public void Mult(Matrix First, Matrix Second)
for (int i = 0; i < Row; i++)
for (int a = 0; a < Column; a++)
for (int b = 0; b < First.Column; b++)
data[i,a] = data[i,a] + First.data[i,b]*Second.data[b,a];