package com.codegym.task.task02.task0216;

public class Solution {
    public static int min(int a, int b, int c) {

        if (a <= b && b <= c)
        return a;
        else if (b <= a && b <= c)
        return b;
        else
        return c;
    }
    public static void main(String[] args) throws Exception {
        System.out.println(min(1, 2, 3));
        System.out.println(min(-1, -2, -3));
        System.out.println(min(3, 5, 3));
        System.out.println(min(5, 5, 10));
    }
}
Calculates correctly. But validation fails, writes that: The min method must return the minimum of the numbers a, b, and c. Although the expression is correct. What is the problem?