package apkg func Max(a, b float64) float64 { if a > b { return a } return b }