class MugI extends CupI {
    static final int volume = 250;
    void fill() {
        amount = (int)(ratio * volume);
    }
    String status() {
        return "amount=" + amount;
    }
}
