using System;
public class Program
{
public static void Main()
int PosX = 1;
int PosY = 1;
int Length = 10;
int Height = 10;
for(int a = Height; a > 0; a-- )
// Row
if(PosY == a)
for (int i = PosX; i > 1; i-- )
Console.Write(" ■");
}
Console.Write(" □");
for (int i = Length-PosX; i > 0; i-- )
Console.WriteLine();
else
Console.WriteLine(" ■ ■ ■ ■ ■ ■ ■ ■ ■ ■");