public class Solution { public static int min(int a, int b, int c) { //write your code here if (a<=b && b<=c){ return a; } else if (b<=a && a<=c){ return b; } else if (c<=a && a<=b){ return c; } } Error: missing return statement , line 20