import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.event.*;
import javax.swing.JLabel.*;


public class Frame_Megasena extends JFrame implements ActionListener
{
		JLabel lbl_1, lbl_2, lbl_3, lbl_4, lbl_5, lbl_6, lbl_7, lbl_8;
		JPanel Painel_1,  Painel_2,  Painel_3 ; 
		public Frame_Megasena()
		{
				setLayout(new GridLayout(3, 1))	;
				getContentPane().add(Painel_1 = new JPanel (new GridLayout(1, 8)));
				Painel_1.add(new JLabel ());
				Painel_1.add(new JLabel ("1º NÚMERO"));
				Painel_1.add(new JLabel ("2º NÚMERO"));
				Painel_1.add(new JLabel ("3º NÚMERO"));
				Painel_1.add(new JLabel ("4º NÚMERO"));
				Painel_1.add(new JLabel ("5º NÚMERO"));
				Painel_1.add(new JLabel ("6º NÚMERO"));								
				getContentPane().add(Painel_2 = new JPanel (new GridLayout(1, 8)));

				Painel_2.add(new JLabel (""));
				Painel_2.add(lbl_1 = new JLabel(""));
				Painel_2.add(lbl_2 = new JLabel(""));				
				Painel_2.add(lbl_3 = new JLabel(""));
				Painel_2.add(lbl_4 = new JLabel(""));
				lbl_4.setFont(new Font("Courier", Font.BOLD + Font.ITALIC, 20));
				Painel_2.setBackground(Color.yellow);
				Painel_2.add(lbl_5 = new JLabel(""));
				Painel_2.add(lbl_6 = new JLabel(""));
				getContentPane().add(Painel_3 = new JPanel (new GridLayout(1, 8)));

					
				setSize(500, 300);
				setVisible(true);
						
		}
		public void actionPerformed (ActionEvent e)	
		{
			
		}
		public static void main (String  args [])
		{
				new Frame_Megasena(); 
		}
}
