write a function that takes a tuple as an argument and returns the tuple sorted. write a main function that prompts the user to enter 10 integers on the same line, creates a tuple from the 10 integers, and prints the tuple before and after the above function is called. hint: use a list to store the 10 integers and convert the list to a tuple.