Problem Statement
Exchange rates:
- 1 USD = 0.71 JOD
- 1 USD = 0.92 EUR
- 1 USD = 0.82 GBP
The conversion formula is:
Converted Amount = Amount in USD ร Exchange Rate
The user will input:
- The amount in USD (a floating-point number)
- A number representing the target currency:
- 1 for JOD
- 2 for EUR
- 3 for GBP
If the user selects an invalid option (not 1, 2, or 3), print INVALID OPTION.
Round the converted amount to two decimal places.