using System;
public class Program
{
public static void Main()
Console.WriteLine(Exec(() => 1));
}
public static T Exec<T>(Func<T> func) => func();