using System;
public class Program
{
public static void Main()
//Rodrigo Menchaca 3-C TPR
//M0220
byte NUM, I;
int RESUL;
string linea;
Console.Write("DIGITE NUMERO:"); linea = Console.ReadLine();
NUM = byte.Parse(linea);
for (I = 1; I <= 12; I++)
RESUL = NUM * I;
Console.WriteLine("{0} * {1} = {2}", NUM, I, RESUL);
}
Console.Write("Pulse una tecla:"); Console.ReadLine();