/* DO NOT MODIFY THIS CLASS */
abstract class FoodItem {

    // returns the price of the fooditem.
	public abstract double price();
	
}
