Write a program that performs two unit conversions:
KM_TO_MILES = 0.621371LB_TO_KG = 0.45The program should prompt for:
Enter the distance in km: Enter the weight in pounds: Both values are entered as decimals (floats).
Round both results to 2 decimal places.
distance km is miles miles
weight pounds is kilograms kg
Input:
10.0
100.0
Output:
10.0 km is 6.21 miles
100.0 pounds is 45.0 kg