Подскажите
package com.javarush.task.task04.task0441;
import java.io.BufferedReader;
import java.io.InputStreamReader;
/*
Как-то средненько
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));
String x1 = bufferedReader.readLine();
String x2 = bufferedReader.readLine();
String x3 = bufferedReader.readLine();
int a = Integer.parseInt(x1);
int b = Integer.parseInt(x2);
int c = Integer.parseInt(x3);
if (a>=b && b>=c || a>=c && c>=b || c>=b && b>=a)
System.out.println(b);
else if (b>=a && a>=c || b>=c && a>=c || c>=a && a>=b)
System.out.println(a);
else
System.out.println(c);
//напишите тут ваш код
}
}