let minValue = min(2, 1, 3)//minValue is 1let maxValue = max(2, 1, 3)//maxValue is 3print("minValue is \(minValue)")print("maxValue is \(maxValue)")