using System;
public class Program
{
static bool Compare(int[] arr)
int count_even = 0;
foreach (int i in arr)
count_even = (i % 2 == 0) ? count_even + 1 : count_even - 1;
}
return count_even > 0;
public static void Main()
int[] a = {-2};
Console.WriteLine(Compare(a));