class Ideone
{
	public static int num() {
		try {
			throw new RuntimeException();
		} finally {
			return 42;
		}
	}
	public static void main (String[] args)
	{
		try {
			System.out.println(num());
		} catch (Exception ex) {
			System.out.println(ex);
		}
	}
}