//Rextester.Program.Main is the entry point for your code. Don't change it.
//Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Rextester
{
public class Program
public static void Main(string[] args)
int[,] array = new int [10,10];
for (int i =1;i<=9;i++){
for (int j=1;j<=9;j++){
array[i,j]=i*j;
if(array[i,j]<10)
Console.Write(i+"*"+j+"="+array[i,j]+" ");
else
}
Console.WriteLine("");