//package OxnarTecnologia;

import java.util.Random;

public class GerarNumeroAleatorio 
{
		public GerarNumeroAleatorio()
		{
				Metodo_Cria_Numero_Aleatorio();
		}
		public void Metodo_Cria_Numero_Aleatorio() 
		{

        		Random random = new Random();
				int x = random.nextInt(10);
        		System.out.println(x);		
    	}
		public static void main (String args [])
		{
				new GerarNumeroAleatorio();
		}
}