using System; class MainClass { static void Main() { int? nullableInteger = 15; if (nullableInteger.HasValue) Console.WriteLine("{0}", nullableInteger.Value); } }
15