package main // Max returns the larger of two integers. func Max(a, b int) int { if a > b { return a } else { return b } }