using System;
public class Program
{
public static void Main()
int rowCount = 3;
int columnCount = 3;
for(int i=0; i<rowCount * columnCount; i++)
Console.Write("[ " + i / rowCount + " - " + i % columnCount + " ] ; ");
}