import java.applet.*;
           import java.awt.*;
            
/**
 * The HelloWorld class implements an applet that
 * simply displays "Hello World!".
 */
public class HelloWorld extends Applet {
  public void paint(Graphics g) {
    g.drawString("Hello world!", 50, 25); // Display "Hello world!"
  }
}
