import java.util.concurrent.*;

public class JI9060945 {

	public static void main(String[] args) throws Exception {
		Future future = new ThreadPoolExecutor(1, 1, 2, TimeUnit.MINUTES, new LinkedBlockingDeque<Runnable>(10)) 
		.submit(new Callable<Object>() { 
        
		@Override 
		public Object call() throws Exception { 
		throw new RuntimeException(); 
		} 
		}); 
		//System.out.println("future.get() = " + future.get());
	}

}
