import java.applet.*;
import java.awt.*;
public class DebugSeventeen4 extends Applet
{
  private Image baby;
  public void int()
  {
    baby = getImage("Baby.gif"); 
  }
public paint(Graphics g)
 {
   g.drawImage(baby,1,1,this);
   g.drawString("Don't cry!",150,50);
   g.drawString("Event Handlers will take care of it.",120,100);

 }
}

