import javax.swing.JFrame;
import java.awt.Color;
import java.awt.EventQueue;
public class Main {
public static void main( String[] args ) {
JFrame frame = new JFrame();
frame.getContentPane().setBackground( Color.PINK );
frame.setSize( 200, 200 );
frame.setVisible( true );
frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
}
}