Odpowiedź:
using System;
class WypiszLiczby {
static void Main() {
int h = 0;
Console.WriteLine("Podaj wysokość:");
h = int.Parse(Console.ReadLine())
for (int i = 1; i <= h; i++)
{
for (int j = 1; j <= i; j++)
{
Console.Write((i*j) + " ");
}
Console.WriteLine();
}
}
}