public static void Main()
Random rnd = new Random();
int[,] masivs = new int[x, x];
for (int r = 0; r < x; r++)
for (int c = 0; c < x; c++)
masivs[r, c]=rnd.Next(0, 100);
curr_row = curr_row + " " + masivs[r, c];
Console.WriteLine(curr_row.Remove(0, 1));
string str_rezultats = "";