You need to plan a road trip. you are traveling at an average speed of 40 miles an hour.
given a distance in miles as input (the code to take input is already present), output to the console the time it will take you to cover it in minutes.

sample input:
150

sample output:
225

explanation: it will take 150/40 = 3.75 hours to cover the distance, which is equivalent to 3.75*60 = 225 minutes.

kindly assist in writing of this code.