package lib

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