package ac // max return max value func max(a, b int) int { if a > b { return a } return b }