using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter a number, and I'll print the multiplication table:");
int number = Convert.ToInt32(Console.ReadLine());
for(int i = 0; i<=12; i++){
Console.WriteLine(number + " x " + i + " = " + (number * i));
}