import java.io.*;
import javax.swing.*;
import java.awt.*;


public class LotoFacil2
{

	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,	
						   	61, 62, 53, 54, 55, 56, 57, 58, 59, 60,	
						   	71, 72, 53, 54, 55, 56, 57, 58, 59, 60,	
						   	81, 82, 53, 54, 55, 56, 57, 58, 59, 60,	
						   	91, 92, 93, 94, 95, 96, 97, 98, 99, 100				
	                        };
	int [] Numeros_Aposta = new int [100];
	//Metodo construtor
	public LotoFacil2 ()
	{
		Carrega_Numeros_Aposta ();
	}
	//Metodo Executor
	public static void main (String args [])
	{
		new LotoFacil2();
	}
	
	
	//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 ()
    {	int i = 0; 
    	while(i<100)
    	{
    			Numeros_Aposta [i] = Retorna_Numero_Aleatorio(60);
    			if(Retorna_Numero_Aleatorio(i)!=0)
    			{
    					System.out.println (""+ Numeros_Aposta [i]);
    					i = i +1;
    			}
    		
    	}
    }
	






}