public class CoffeeWithCream implements Drink { public double getCost() { return 1.25; } public String getDescription() { return "Mug of coffee with cream"; } }