bool Even(int k)
{
return k%2==0;
}
void head(List<integer> list)
int Count =0;
foreach(var i in list)
if (Even(i))
Count++;
}}