// The "NoLayout" class.
import java.applet.*;
import java.awt.*;

public class NoLayout extends Applet
{
    Button first = new Button("+");
    Button second = new Button("-");
    
    public void init ()
    {
	setLayout(null);
	add(first);
	add(second);
	first.setBounds(25,30,20,20);
	second.setBounds(65, 30,20,20);
	
    } // init method
    
    
    public void paint (Graphics g)
    {
	// Place the body of the drawing method here
    } // paint method
} // NoLayout class

