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

# Example: Calculate the cost to tow a vehicle for 10 miles
cost = calculate_tow_cost(10)
print(cost) # Output: 35