package main func Max(x, y int) int { if x < y { return y } return x }