using static System.Console;
public static void Main() {
int[,] array = new int[10,10];
for (int l = 0; l < 10; l++) {
for (int c = 0; c < 10; c++) {
for (int l = 0; l < 10; l++) {
for (int c = 0; c < 10; c++) {
Write($"{array[l, c]} ");
for (int l = 0; l < 10; l++) {
for (int c = l; c < 10; c++) {
array[l, c] = array[c, l];
for (int l = 0; l < 10; l++) {
for (int c = 0; c < 10; c++) {
Write($"{array[l, c]} ");