public static void Main()
for(int i = 2; i <= 12; i=i+2)
Console.WriteLine("The product of all even numbers under 12 (including 12) = " + iProduct);
Console.WriteLine("====================");
Console.WriteLine("Please enter an integer: ");
int iInput = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("====================");
Console.WriteLine("The Sum of your inputs is: " + iSum);