import java.applet.Applet;
import java.awt.Graphics;

public class template extends Applet {
    public void paint(Graphics g) {
	g.drawString("Hey, this is just a template. What do you expect?",
	  50, 25);
    }
}

