package it.codegym.task.task02.task0216;

/*
Minimum of three numbers

*/
public class Solution {
    public static int min(int a, int b, int c) {
       int result;

       if (a<=b && a<=c)
       result = a;
       else result =  b;

       if (b<=c && b<=a)
       result = b;
       else result = c;

       if (c<=a && c<=b)
       result = c;
       else result = a;
       return result;

      }

    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));
    }

}