def miles_to_km(m):
     km = m * 1.60934
     return km
 
#Then you can call the function using any value
print(miles_to_km(10))