using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter Integer Number :");
mytable();
}
public static void mytable()
int b = 0;
int num = Convert.ToInt32(Console.ReadLine());
for (b = 1; b <= 10; b++)
int c = num * b;
Console.WriteLine(num + " x " + b + " = " + c);