try:
from forex_python.converter import *
c=CurrencyRates()
src=input("Enter 3 letter code of source currency:")
dest=input("Enter 3 letter code of destination currency:")
amt=int(input("Enter amount:"))
print(c.convert(src, dest, amt))
except Exception as e:
print(e)