using System;
public class Program
{
public static void Main()
object c = null;
int? a = (int?)c;
Console.WriteLine(a.GetType().ToString());
}