Design a program to display the following menu:
1. Convert Miles to Yards
2. Covert Miles to Feet
3. Convert Miles to Inches
It then prompts the user to enter a choice (of 1, 2 or 3) and distance in miles. Then it calculates and display the required value. It is given that:
• 1 mile = 1760 yards
• 1 mile = 5280 feet
• 1 mile = 63360 inches
Assume valid values are entered. (IPO, pseudocode, trace table, C and PYTHON required)