public class TeaWithCream implements Drink { public double getCost() { return 1.75; } public String getDescription() { return "Mug of tea with cream"; } }