<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import ConvNumTxt as cv

cantidad = 8483.40
e = int(cantidad)
c = int(cantidad * 100.0 - e * 100)

print("La cantidad: " + str(cantidad))

ps = cv.conv(e)
ce = cv.conv(c)
st = "Es: " + ps + " pesos " + ce + " centavos"
print(st)
</pre></body></html>