using System;
public class Program
{
public static void Main()
/*int [,] a = {
{4,3},
{1,9},
};
for (int i = 0; i<a.GetLength(0);i++)
for(int j = 0; j< a.GetLength(1); j++)
Console.WriteLine(a[i,j]);
}
int [,] a =
{1, 5, 6},
{4, 7, 3},
{2, 6, 9}
for(int i =0; i < a.GetLength(0); i++)
for(int j = 0; j < a.GetLength(1); j++)
Console.WriteLine(a[i, j]);
}*/
int spaces = 10;
int asterix = 1;
for(int i = 0; i < 10; i++)
for (int j = 0; j < spaces; j++)
Console.Write(" ");
for(int j = 0; j < asterix; j++)
Console.Write("* ");
Console.WriteLine();
asterix++;
spaces--;