#nullable enable
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
string result2 = MyMethod();
result2 = null;
}
static string MyMethod()
return "Hello World!";