Button b;
setLayout(new GridLayout(2,3));
add(b=new Button("B1"));
b.addActionListener(this);
add(b=new Button("B2"));
b.addActionListener(this);
add(b=new Button("B3"));
b.addActionListener(this);
add(b=new Button("C1"));
b.addActionListener(this);
add(b=new Button("C2"));
b.addActionListener(this);
add(b=new Button("C3"));
b.addActionListener(this);