import java.applet.*;    
import java.awt.*;
public class BorderButtons extends Applet {
  public void init() {
  
    this.setLayout(new BorderLayout(20, 10));
    this.add("North", new Button("North"));
    this.add("South", new Button("South"));
    this.add("Center", new Button("Center"));
    this.add("East", new Button("East"));
    this.add("West", new Button("West"));
    
  }
}