import java.io.*;

/**
 * a simple example to read two numbers and print the maximum.
 * @author	Qusay H. Mahmoud
 */

public class First {
   public static void main(String argv[]) throws Exception {
     BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
     System.out.print("Enter first number: ");
     int x = Integer.parseInt(br.readLine());
     System.out.print("Enter second number: ");
     int y = Integer.parseInt(br.readLine());
     
     if(x > y) {
       System.out.println("The maximum of " + x + " and " + y + " is: "+ x);
     } else {
       System.out.println("The maximum of " + x + " and " + y + " is: "+ y); 
     }
   }
} 
