public class Hello
{
	public Hello() {
		System.out.println("I'm a Constructor");
	}

  public void run()
  {
     System.out.println("My First Java Program");
  }
  public static void main(String args[])
  {
     Hello myApp;
     myApp = new Hello();
     myApp.run();
  }
}

