using System;
public class Program
{
public static void Main()
int[, ] multiple = new int[13 , 13];
for (int i = 0; i <13; i++)
for (int j = 0; j <13;j++)
multiple[i,j] = i*j;
}