import java.io.*;
import javax.swing.*;
import java.awt.*;


public class MegaSena2
{

	int[] Numeros_no_Globo = { 	1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 
						   	11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 
						   	21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
						   	31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
						   	41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
						   	51, 52, 53, 54, 55, 56, 57, 58, 59, 60	
	                        };
	int [] Numeros_Aposta = new int [60];
	//Metodo construtor
	public MegaSena2 ()
	{
		Carrega_Numeros_Aposta ();
	}
	//Metodo Executor
	public static void main (String args [])
	{
		new MegaSena2();
	}
	
	
	//Classes de Negócio
	public int Retorna_Numero_Aleatorio(int Qtde_Numeros)
    {
    	int i = 1 + (int)(Math.random() * Qtde_Numeros);
    	return i;  
    	
    }
    public void Carrega_Numeros_Aposta ()
    {
    	Numeros_Aposta [0] = Retorna_Numero_Aleatorio(60);
    	System.out.println (""+ Numeros_Aposta [0]);
    }
	






}