using System;
public class Program
{
public static void Main()
int x, h, w;
Console.Write("Input a number: ");
x = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the desired width: ");
w = Convert.ToInt32(Console.ReadLine());
h = w;
for (int r = 0;r < h; r++)
for (int c = 0; c < w; c++)
Console.Write(x);
}
Console.WriteLine();
w--;