import java.util.*;
/**
 *  Inventory class uses arrays to track multiple types of products
 *
 * @author Kathryn
 * @version February 2007
 * 
 * Today: 
 * 1) Use static and regular methods
 * 
 */


public class Inventory
{
    public static void main(String[] args)
    {
        // Make an array of two items & a Scanner

        // Read in two new items

        
        // Print them out 

        
    }
}
