[해커랭크] Mini-Max Sum Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values as a single line of two space-separated long integers.ExampleThe minimum sum is and the maximum sum is . The function prints16 24Function DescriptionComplete the function with the followin..