print("Por favor ingresar el monto que gana anualmente")
monto=int(input())

print(f"El monto ingresado es de {monto}")

if monto > 6000:
    print("Deberá pagar", (monto*0.15), "USD en impuestos")
elif monto >= 4000:
    print("Durante el año habrá generado", (monto*0.10), "USD en impuestos")
elif monto >= 2000:
    print("Durante el año habrá generado", (monto*0.05), "USD en impuestos")
elif monto >= 0:
    print("Durante el año habrá generado", (monto*0), "USD en impuestos")
else:
    print("Error, por favor verificar")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: