package com.codegym.task.task06.task0620;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

/*
Fixing the mistakes of youth

*/

public class Solution {
    public static int max = 100;

    public static void main(String[] args) throws IOException {
       BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));

        String max = "The max is ";
        int a = Integer.parseInt(reader.readLine());
        int b = Integer.parseInt(reader.readLine());
        String fgGF = reader.readLine();
        int satya = Integer.parseInt(fgGF);
      // int satya;
      //int a = 89;
      //int b = 88;
       satya = a > b ? a : b;

        System.out.println(max + satya);
    }

}