class PartyT {
    public static void main(String[] arg) {
        CupT.setRatio(Float.parseFloat(arg[0]));
        CupT[] cups = new CupT[Integer.parseInt(arg[1])];
        int n = Integer.parseInt(arg[2]);
        for (int i = 0; i < n; i++) {
            cups[i] = new MugT();
        }
        for (int i = n; i < cups.length; i++) {
            cups[i] = new PaperCupT();
        }
        PartyT0.drink(cups);
        PartyT0.fill(cups);
        PartyT0.drink(cups);
    }
}
