import java.awt.*;
import java.applet.*;

/*
<applet code="SimpleApplet" width=200 height=50> </applet> 
*/

/* To run this applet in "appletviewer", compile this file 
         javac  SimpleApplet.java
   and then run the following command in the same directory:
          appletviewer SimpleApplet.java

Note that "appletviewer" is a program that is included in any 
standard distribution of Java.
*/

public class SimpleApplet extends Applet {
  public void paint(Graphics g) {
    g.drawString("A Simple Applet", 20, 40);
  }
}