using System.Collections.Generic;
using System.Text.RegularExpressions;
public static void Main(string[] args)
Console.WriteLine("Enter size for array count:");
buf = Console.ReadLine();
n = Convert.ToInt32(buf);
for (int i = 0; i < n; i++)
Console.WriteLine("Enter element:");
buf = Console.ReadLine();
a[i] = Convert.ToInt32(buf);
for (int i = 0; i < n; i++)
Console.WriteLine("There is no any even element in the array.");
Console.WriteLine("The product of the even elements of array is: {0}", product);