using System;
public class Program
{
public static void Main()
int x = 0;
try{
x/=x;
x+=1;
}catch(Exception e){
x+=3;
}
finally{
x+=4;
Console.Write(x);