using System;
public class Program
{
public static void Main()
int? test = null;
Console.WriteLine(test.ToString());
test = 1;
}