using System;
public class Program
{
public static void Main()
//try without catch or finally block will throw error
try{
int a=12;
int b=0;
int res=a/b;
}
catch(Exception ex)
throw ex;
finally{
Console.WriteLine("finally");