int m2 ; if (a < b) m2 = a ; else m2 = b ; if (b < c) m2 = b ; else m2 = c ; if (c > a) m2 = a ; return m2 ;