// MSOE_ICS: MSOE Ice Cream Store

public class MSOE_ICS {
  public static void main(String[] args) {
    IceCreamConfection confection = null; // test confection
    confection = new IceCreamWithFudge(new WaffleCone());
    System.out.println(confection.description() + " costs " + confection.costInCents());

    confection = new IceCreamWithNuts(
                 new IceCreamWithNuts(new IceCreamWithFudge(new Dish())));
    System.out.println(confection.description() + " costs " + confection.costInCents());
  }
}
