Create a function that takes a time in seconds as an input, and returns the number of hours and minutes that the time represents. The number of minutes shall be able to handle a decimal point. For example, if the time given is 10213 seconds, the function will give back 2 hours and 50.22 minutes. The function shall not print the results to console, but instead pass them back to the calling function. In the main function call the function using a few different times, and print the result to console.