using System;
public class Program
{
public static void Main()
int i = 42;
Console.WriteLine(i);
i = (int)(object)null;
}