Menu

Write a Python program that takes two numbers as input from the user (initial value and final value). Calculate the percentage increase

Write a Python program that takes two numbers as input from the user (initial value and final value). Calculate the percentage increase from the initial value to the final value and display the result with exactly two decimal places. You should write the algorithm first after that go for the implementation. Hint: The percentage increase from the initial value (1) to the final value (F) can be calculated using the formula ((F1)/1)100. Answer:

OR