public class ThingDriver2
{
  public static void main (String args [])
  {
     Thing one, two, three;
	  int  t1x, t2x, t3x, t1y, t2y, t3y,
	       t1z, t2z, t3z;
	  
	  one = new Thing();
  	  two = new Thing();
	  three = new Thing();
     Thing.putThing(15);
	  Thing.putThing(27);
	  Thing.putThing(35);

	  
	  t1x = one.getX();
	  t1y = one.getY();
	  t1z = one.getZ();
	  
	  t2x = two.getX();
	  t2y = two.getY();
	  t2z = two.getZ();
	  
	  t3x = three.getX();
	  t3y = three.getY();
	  t3z = three.getZ();
	  System.out.println (" Xs ");
	  System.out.println
	    (" t1x: " + t1x + 
		  " t2x: " + t2x + 
		  " t3x: " + t3x);
	System.out.println ();
	System.out.println (" Ys ");	  
   System.out.println
       (" t1y: " + t1y + 
		  " t2y: " + t2y + 
		  " t3y: " + t3y);		
	System.out.println ();
	System.out.println (" Zs ");	  
   System.out.println
       (" t1z: " + t1z + 
		  " t2z: " + t2z + 
		  " t3z: " + t3z);		
 } // end main
 } // end class  
		    