using System;
class Program
{
static void WriteRectangle(int width, int height)
{
for (int i = 0; i <= width; i++)
{
for (int j = 0; j <= height; j++)
Console.Write("*");
Console.WriteLine();
}
}
static void WriteHollowRectangle(int width, int height)
{
for (int i = 1; i <= height; i++)
{
for (int j = 1; j <= width; j++)
{
if ((i == 1) || (i == height))
Console.Write("*");
else
{
if ((j == 1) || (j == width))
Console.Write("*");
else
Console.Write(" ");
}
}
Console.WriteLine();
}
}
static void Main(string[] args)
{
WriteRectangle(4, 3);
Console.WriteLine();
WriteHollowRectangle(3, 4);
Console.ReadLine();
}
}