using System;
public class Program
{
public static void Main()
int i = 7;
Action act = () => i = 2;
act();
Console.WriteLine(i);
}