Скажите пожалуйста
package com.javarush.task.task04.task0419;
import java.io.BufferedReader;
import java.io.InputStreamReader;
/*
Максимум четырех чисел
*/
public class Solution {
public static void main(String[] args) throws Exception {
//напишите тут ваш код
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
InputStreamReader inputStreamReader = new InputStreamReader(System.in);
String s1 = reader.readLine();
String s2 = reader.readLine();
String s3 = reader.readLine();
String s4 = reader.readLine();
int a = Integer.parseInt(s1);
int b = Integer.parseInt(s2);
int c = Integer.parseInt(s3);
int d = Integer.parseInt(s4);
if (a>b && a>c && a>d)
System.out.println(a);
else if (b>a && b>c && b>d)
System.out.println(b);
else if (c>a && c>b && c>d)
System.out.println(c);
else if (d>a && d>b && d>c)
System.out.println(d);
else if (a==b||a==c||a==d)
System.out.println(a);
}
}