public static void Main()
Console.Write("Enter a number: ");
string numberToDisplayUserInput = Console.ReadLine();
Console.Write("Enter the desired width: ");
string widthOfTriangleUserInput = Console.ReadLine();
int widthOfTriangle = Convert.ToInt32(widthOfTriangleUserInput);
for (int i = widthOfTriangle; i > 0; i--) {
for (int j = 0; j < i; j++) {
Console.Write(numberToDisplayUserInput);