import java.applet.Applet import java.awt.*; public class hello extends Applet { public void paint(Graphics g) { g.drawstring("Hello" ,60,100); } }