import java.swing.JFrame; class Program01 { Program01() { pack(); setVisible(true); } public static void main(String[] args) { new Program01(); } }