// The "Applet_hello" class.
import java.applet.*;
import java.awt.*;

public class Applet_hello extends Applet
{
    // Place instance variables here
    
    public void init ()
    {
	// Place the body of the initialization method here
    } // init method
    
    
    public void paint (Graphics g)
    {
	g.drawString("hello",20,10);
    } // paint method
} // Applet_hello class

