Подскажите пожалуйста как исправить ошибку, не могу понять как прописать условие если несколько введенных чисел - одинаковые.
package com.javarush.task.task05.task0531;
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));
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 e = Integer.parseInt(reader.readLine());
int minimum = min(a, b, c, d, e);
System.out.println("Minimum = " + minimum);
}
public static int min(int a, int b, int c, int d, int e) {
if( a < b && a < c && a < d && a < e) {
return a;
}
else if(b < a && b < c && b < d && b < e) {
return b;
}
else if(c < a && c < b && c < d && c < e) {
return c;
}
else if(d < a && d < b && d < c && d < e) {
return d;
}
else if(e < a && e < b && e < c && e < d) {
return e;
}
else if(a == b) {
return a;
}
else if(a == c) {
return a;
}
else if(a == d) {
return a;
}
else if(a == e) {
return a;
}
else if(b == c) {
return b;
}
else if(b == d) {
return b;
}
else if(b == e) {
return b;
}
else if(c == d) {
return c;
}
else if(c == e) {
return c;
}
return min(e, e, e, e, e);
}
}