numbers = [11, 2, 5, 7, 3]minValue = min(numbers)# minValue is 2maxValue = max(numbers)# max is 11print(f"{minValue = }")print(f"{maxValue = }")