using System;
public class Program
{
public static void Main()
Func<int, char> f =
n=>(n+"")[0];
Console.WriteLine(f(100));
}