public static void Main()
string[,] karta = {{"A","B","C"},
public static void DrawMap(string[,] map, int a, int b)
for(int x=0; x<map.GetLength(0); x++)
for(int y=0; y<map.GetLength(1); y++)
Console.ForegroundColor = ConsoleColor.Blue;
Console.ForegroundColor = ConsoleColor.White;