using System;
public class Program
{
public static void Main()
string[, ] example = new string[3, 3];
example[0, 0] = "Cat";
example[0, 1] = "Dog";
example[0, 2] = "Fish";
example[1, 0] = "Frog";
example[1, 1] = "Turtle";
example[1, 2] = "Snake";
example[2, 0] = "Chicken";
example[1, 1] = "Cow";
example[2, 2] = "Horse";
for (int i = 0; i < 3; i++)
for (int j = 0; j < 3; j++)
Console.WriteLine(example[i, j]);
}