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