public class MainClass
{
// create a starting point for the computer
public static void main(String args [])
   {

   // run the fundamental behavior (constructor) 
	// of the counter class
	Counter ctrObject;
	ctrObject = new Counter();
	
	Counter secondObject;
	secondObject = new Counter();
	
	Counter thirdObject;
	thirdObject = new Counter(); 
	
   }

}
