public void put(int n) {
   alloc_.put(n);
   hiredout -= n;
   available += n;
   display();
 }
 public void get(int n) throws InterruptedException {
   alloc_.get(n);
   available -= n;
   hiredout += n;
   display();
 }