using System;
public class Program
{
private static void DoTheThing() => Console.WriteLine(1+1);
public static void Main()
DoTheThing();
}