Write a function that describes the cost to have your vehicle towed if you are charged $15 for the pickup plus $2 for every mile.

def calculate_tow_cost(miles):

pickup_cost = 15
mile_cost = 2
total_cost = pickup_cost + (mile_cost * miles)
return total_cost

# testing the function
print(calculate_tow_cost(5)) # expected output: 25
print(calculate_tow_cost(10)) # expected output: 35

huh