public static void Main()
double product10 = 1, product20 = 1, product50 = 1, product100 = 1, product1000 = 1;
Console.WriteLine("the product of the first 10 numbers is " +product10);
Console.WriteLine("the product of the first 20 numbers is " +product20);
Console.WriteLine("the product of the first 50 numbers is " +product50);
Console.WriteLine("the product of the first 100 numbers is " +product100);
Console.WriteLine("the product of the first 1000 numbers is " +product1000);