public interface Buffer {

	public void put(int val) throws InterruptedException;

	public int get() throws InterruptedException;

}
