using System;
public class Program
{
public static void Main()
int vEnter, i;
Console.WriteLine("Please enter a value to find its timetables: ");
vEnter = int.Parse(Console.ReadLine());
Console.WriteLine("");
Console.WriteLine("Multiplication Table");
for (i = 1; i < 10; ++i)
Console.WriteLine(vEnter + " * " + i + " = " + vEnter * i);
}