Está en la página 1de 1

sueldo = int(input("ingrese el sueldo: "))

if sueldo > 3000:


print("esta persona debe abonar impuestos")
else:
print("esta persona no debe abonar impuestos")

nota1=int(input("Ingrese primer nota:"))


nota2=int(input("Ingrese segunda nota:"))
nota3=int(input("Ingrese tercer nota:"))
prom=(nota1+nota2+nota3)/3
if prom>=7:
print("Promocionado")
else:
if prom>=4:
print("Regular")
else:
print("Reprobado")

También podría gustarte