using System; public class Test { public static void Main() { int? x = null; Console.WriteLine(x.Value); } }