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