class Request {
constructor(amount) {
this.amount = amount;
console.log("Requested: $" + amount + "\n");
}
get(bill) {
const count = Math.floor(this.amount / bill);
this.amount -= count * bill;
console.log("Dispense " + count + " $" + bill + " bills");
return this;
}
}