public static void Main()
Console.Write("Enter a number: ");
int symbol = Int32.Parse(Console.ReadLine());
Console.Write("Enter the desired width: ");
int width = Int32.Parse(Console.ReadLine());
for(int i = width; i>0; i--){
for(int j = i; j>0; j--){