public class Store 
{
    static Shoe  hightop;
	 
	 public static void main (String arg[] )
	 {
	      init();
			getInfo (hightop);
			orderInfo(hightop);
	 }
	 
	 
    public static void init ()
	 {
	     hightop = new Shoe();
    }	 
	 
	 public static void getInfo (Shoe item)
	 {
	     System.out.println 
		     (" This Product is made by " + item.MAKER);
		  System.out.println 
		     (" It costs $" + item.getPrice(1) + '\n');
	 }
	 
	 public static void orderInfo (Product item)
	 {
	    System.out.println 
		   (" To order from " + item.MAKER + " call " + item.PHONE + ".");
		 System.out.println 
		   (" Each item costs $" + item.getPrice(1));
	 }
} // end class Store		 