import javax.swing.*;
import java.awt.*;

public class helloframe {
	public helloframe(){
		JFrame simpleframe = new JFrame();
		simpleframe.setSize(400,500);
		simpleframe.setVisible(true);	
		simpleframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
	}

	public static void main(String args[]){
		new helloframe();
	}
}