import java.util.concurrent.*;

class Test {
	public static void main (String[] args) throws java.lang.Exception {
		new Semaphore(0).acquire();
	}
}