public class MT3 {
  public static int f(boolean t) throws Exception {
    if (t) throw new Exception();
    return 1;
  }
  public static void main(String args[]) {
    try {
      System.out.println("1");
      f(false);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
}
