using System;
public class Program
{
public static void Main()
//Write a program to show the multiplication table of a given integer.
int n = 12;
int i = 1;
while (i <= 10)
Console.WriteLine("{0}*{1}={2}", n, i, n * i);
i++;
}