  
import javax.swing.*;
import javax.swing.JFrame.*;
import java.awt.*;

public class LotoFacil 
 {

    int[] Numeros = new int[100];

    public LotoFacil()

    {


    

        	Carrega_Numeros();
        	Exibe_Numeros(); 


    

    }

    //Método para gerar um número aleatorio
    public int Retorna_Numero_Aleatorio() {
        int i = 1 + (int) (Math.random() * 100);
        return i;

    }

    public void Carrega_Numeros() {
        int i = 0;
        while (i < 100) {
            Numeros[i] = Retorna_Numero_Aleatorio();
            i = i + 1;

        }

    }

    //Exibe Números Já organizados
    public void Exibe_Numeros() 
    {


        int i = 0;
        while (i < 50) 
        {
        		if(Numeros[i]<10)
        		{
        				System.out.print("-0"+Numeros[i]);
        		}	
        		else
        		{
        				System.out.print("-"+Numeros[i]);
        		}	
        			
        }	
   

    }

    // Método Executor da Classe
    public static void main(String[] args) {
        new LotoFacil();
    }
	//Metodo para tratar ações dos botões

	//
}