using System;
public class Program
{
public static void Main()
const int width = 5;
const int height = 10;
for (int h = 0; h < height; h++)
for (int w = 0; w < width; w++)
int number = h+w;
Console.Write(number);
if (number < 100)
Console.Write(" ");
if (number < 10)
}
Console.WriteLine();