1. Solve a function (e .g., y(x) = sin(x) / (sin(x/10) + x/10)
for many different values of x between a user-defined min and max,
and store the values in a list. Also, print the maximum value of
y(x) for the given range.
2. Find the list in a list-of-lists whose sum of elements is the
highest, and print the sum and list to the user.
e.g., [[1, 2], [2, 5], [3, 2]] → [2,5] with a sum of 7.