import java.util.*;
class Name{
    public static void main(String[] argr){     
        Scanner s=new Scanner(System.in);
        int a=s.nextInt();
        int b=s.nextInt();
        int c=s.nextInt();
        if (a>b){
            System.out.println(a);
        }
        else if(a>c){
            System.out.println(a);
        }
        else if(b>a){
            System.out.println(b);
        }
        else if(b>c){
            System.out.println(b);
        }
        else{
            System.out.println(c);
        }
    }
}
import java.util.Scanner;

class HighestScoreCalculator {
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        
        System.out.println("Enter three scores:");
        int score1 = s.nextInt();
        int score2 = s.nextInt();
        int score3 = s.nextInt();
        
        // Using Math.max for cleaner logic
        int highestScore = Math.max(score1, Math.max(score2, score3));
        
        System.out.println("Highest score is: " + highestScore);
    }
}