Sum of Smallest Numbers

Create a function to compute the sum of the two least positive numbers in a given list.

Your task is to develop a function that selects the two lowest positive numbers from a provided list and returns their sum. The function `min_sum` takes in a list `lst` of numbers and outputs the sum of the two smallest positive numbers in the list. It's assumed that the list always has at least two positive numbers. ### Parameters - `lst`: A list containing integers and/or floats. This list is guaranteed to contain at least two positive numbers. ### Return Value The function returns a value which could be an integer or a float, representing the sum of the two smallest positive numbers within the input list. ### Examples ```python # The two smallest numbers are 2 and 5 min_sum([19, 5, 42, 2, 77]) # 7 # The two smallest numbers are 10 and 3433445 min_sum([10, 343445353, 3453445, 3453545353453]) # 3433455 # The two smallest numbers are 2 and 6 min_sum([2, 9, 6, -1]) # 8 # The two smallest numbers are 221 and 342 min_sum([879, 953, 694, -847, 342, 221, -91, -723, 791, -587]) # 563 # The two smallest numbers are 1617 and 2902 min_sum([3683, 2902, 3951, -475, 1617, -2385]) # 4519 ```