using System;
public class Program
{
public static void Main()
int? test = null;
Console.WriteLine("Hello World: " + test.Value);
}