using System;
public class Program
{
public static void Main()
string text = null;
var a = text?.ToString() ?? "Hello World";
Console.WriteLine();
}