public class NumberMultiplication
public static void Main(string[] args){
Console.WriteLine("please do enter the number for the multiplication table ");
n=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("enter the length of the table multiplication ");
len=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("{0}*{1}={2}\n",n,i,n*i);
Console.WriteLine("Do you want to continue (Y/N)? ");
}while (Console.ReadLine() == "y");}