using System;
public class Program
{
public static void Main()
byte width=125;
byte height=10;
var map = new byte[width,height];
map[0, 0] = 1;
map[10,2] = 2;
map[width-1,height-1] = 4;
for (int y = 0; y < height; y++)
for(int x = 0; x < width; x++)
switch(map[x,y])
case 1:
Console.Write("🏠");
break;
case 2:
Console.Write("🎄");
case 3:
Console.Write("💍");
case 4:
Console.Write("➕");
default:
Console.Write(".");
}