import java.util.*;
import java.lang.*;

class Main
{
    public static void callMe() throws Exception {
        try {
            if (true) throw new Exception("First!");
            System.out.println("You can't see me..");
        } finally {
            if (true) throw new Exception("Second!");
            System.out.println("You can't see me either");
        }
    }
    
    public static void main (String[] args) {
        try {
            callMe();
        } catch (Exception e) {
            e.printStackTrace();
		}
	}
}