using System;
public class Program
{
public static void Main()
try
throw new ArgumentNullException();
}
catch(ArgumentNullException)
throw;
catch(Exception)
Console.WriteLine("Hello!");
finally
Console.WriteLine("World!");