import javax.swing.*;
public class frame1 extends JFrame
{
JFrame f;
frame1()
{
f=new JFrame("Creation of Frame");
f.setVisible(true);
f.setSize(250,250);
// f.setLocationRelativeTo(null);
}
public static void main(String args[])
{
frame1 fr=new frame1();
}
}