поему - то не проходит валидацию
package com.javarush.task.task04.task0419;

/*
Максимум четырех чисел
*/

import java.io.*;

public class Solution {
    public static void main(String[] args) throws Exception {
        //напишите тут ваш код

        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int a = Integer.parseInt(reader.readLine());
        int b = Integer.parseInt(reader.readLine());
        int c = Integer.parseInt(reader.readLine());
        int d = Integer.parseInt(reader.readLine());

        int max = 0;

        if (a >= max)
            max = a;

        if (b >= max)
            max = b;

        if (c >= max)
            max = c;

        if (d >= max)
            max = d;

        System.out.println(max);
    }
}