import java.util.Scanner;
import java.util.Scanner.*;


public class Exercicio_Numeros
{
 		int x1, x2;
 		public Exercicio_Numeros ()
 		{
     			System.out.println("DIGITE O VALOR X1");
    			Scanner ler = new Scanner(System.in); 
     			x1 = Integer.parseInt(ler.nextLine());
     			System.out.println("DIGITE O VALOR X2");
      			x2 = Integer.parseInt(ler.nextLine());
     			if(x1 > x2)
     			{
     					System.out.println("O VALOR DA VARIAVEL X1: " + x1 + " É MAIOR QUE DA VARIAVEL X2: "+x2); 
     			}	
     			else 
     			{
     					System.out.println("O VALOR DA VARIAVEL X2: " + x2 + " É MAIOR QUE DA VARIAVEL X1: "+x1);
     			}	
 		}
    	public static void main(String[] args)
    	{
        		new Exercicio_Numeros();
       	}
}