using System;
public class Program
{
public static void Main()
int n = 10;
for(int i = 0; i <= n; i++)
for(int j = 0; j < i; j++){
Console.Write('*');}
Console.WriteLine();
}