1// build23// Copyright 2023 The Go Authors. All rights reserved.4// Use of this source code is governed by a BSD-style5// license that can be found in the LICENSE file.67packagemain89import"fmt"1011funcmain() {
12a, b := 5, 713fmt.Println(min(a, b))
14fmt.Println(max(a, b))
15}
16