В чем может быть проблема? Проверил в Нетбинсе - всё чётко.
package com.javarush.task.task04.task0441;
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
//напишите тут ваш код
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String s1 = reader.readLine();
String s2 = reader.readLine();
String s3 = reader.readLine();
int a = Integer.parseInt(s1);
int b = Integer.parseInt(s2);
int c = Integer.parseInt(s3);
if(a>=b && a<=c){
System.out.println(a);
}
else if(b>=a && b<=c){
System.out.println(b);
}
else if(b>=c && b<=a){
System.out.println(b);
}
else if(a>=c && a<=b){
System.out.println(a);
}
else if(c>=a && c<=b){
System.out.println(c);
}
else if(c>=b && c<=a){
System.out.println(b);
}
}
}