using System;
public class Rectangle
{
public static void Main()
{
int n;
int row, column;
Console.Write("Enter a number: ");
n = Convert.ToInt32(Console.ReadLine());
Console.Write("Enter the desired: ");
width = Convert.ToInt32(Console.ReadLine());
Console.Write("Enter the desired height: ");
height = Convert.ToInt32(Console.ReadLine());
for (row = 0; row; row++)
{
for (column = 0; column; column++)
Console.Write(n);
Console.WriteLine();
}
}
}