public static void Main()
Console.WriteLine("the product of the first 10 numbers is:" + product);
for (int twenty =1; twenty < 20 ; twenty++)
product = twenty * product;
Console.WriteLine("The current index for the product of twenty is:" + product);
product = product * fifty;
Console.WriteLine(product);
product = product * hundred;
Console.WriteLine(product);
product = product * thousand;
Console.WriteLine(product);