using System;
using System.Linq;
public class Program
{
public static void Main()
Func<int, bool> odd = x => x % 2 == 0;
odd(2);
}