//GroceryItem.java

public class GroceryItem
{
    public String itemName;  // Name of item
    public int priceDollars; // Price of item
}

