/**
 *  This interface defines the methods of a pizza's crust.
 */
interface AbstractCrust {
    /**
     * Compute the calories contained in the pizza's crust.
     * @return the amount of calories in the crust.
     */
    int calories ();
}
