using System;
public class Program
{
public static void Main(string[] args)
{
int[,] matrix = new int[3, 4] { { 13, 22, 43, 34 },
{ 43, 54, 67, 98 },
{ 88, 79, 11, 998 } };
for (int i = 0; i < matrix.GetLength(0); i++) {
for (int j = 0; j < matrix.GetLength(1); j++) {
Console.Write("{0, 4}", matrix[i, j]);
}
Console.WriteLine();
}
}
}
/*
run:
13 22 43 34
43 54 67 98
88 79 11 998
*/