import java.io.*;

/**
 * The code that determines the max can be a reusable method.
 * @author	Qusay H. Mahmoud
 */

public class Second {
   public static int max(int x, int y) {
     if(x>y) {
       return x;
     } else {
       return y;
     }
   }
   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());
     
     int m = max(x, y);
     System.out.println("The maximum of " + x + " and " + y + " is: "+ m);
   }
} 
