using System;
public class Program
{
public static void Main()
int x, tab;
Console.Write("Qual a tabuada? ");
tab= int.Parse(Console.ReadLine());
Console.WriteLine("");
for (x=1; x<=10; x++)
{Console.WriteLine(x+ "x"+ tab+ "= "+ (x*tab) );
}