
/**     			
 * A Driver to test weight and length
 * 
 * @author  Nancy Harris, James Madison
 * @version 3.0  
 */
 public class Driver
 {
 	public static void main (String [] args)
	{
		Length tLength;
		Weight tWeight;
		
		tLength = new Length( 5, 4 );
		tWeight = new Weight( 3, 9 );
		
		System.out.println(tLength);
		System.out.println(tWeight);
	}
}