import javax.swing.*;


public class MakeWindow {


	public static void main(String[] args) {

	   JFrame window = new JFrame();

	   window.setTitle("Our first GUI program");


	   window.setSize(500, 700);
		//width, height


	  window.setDefaultCloseOperation(
				JFrame.EXIT_ON_CLOSE);

	  window.setLocationRelativeTo(null);
	  window.setVisible(true);


	}








}
