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