public static void main(String [] args) {
Frame f=new java0702();
f.setTitle("java0702");
f.setSize(600,600);
f.setBackground(Color.yellow);
f.setVisible(true);
}
public void windowClosing(WindowEvent we){System.exit(0);}
}
}