python pip install currencies python from currencies import Money amount1 = Money('10.50', 'USD') amount2 = Money('5.25', 'USD') result = amount1 + amount2 print(result)