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)
