import ConstructorE;

public class ConstructorTest

{

	public static void main(String args[])

	{  // create objects using constructors 

		ConstructorE a1=new ConstructorE(4);
		ConstructorE a2=new ConstructorE(5.66);
		ConstructorE a3=new ConstructorE("Chris");

		System.out.println(a1.x + " " + a2.y + " " + a3.name);

	}//ends the main

}//ends Test class
