Problem
Write a Python function called traveltime, which takes two variables (the distance to drive in kilometers and the speed in km/h) and returns the time (duration) of the trip in minutes. The type contract of the function is: (float,float)->float. This means that the two variables given as inputs are real numbers, and the result is a real number.