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