puntuacion = int(input("Puntuación de desempeño de 0 a 10: "))
ano_trabajo = int(input("Años trabajados: "))
if puntuacion >= 7 and ano_trabajo > 5:
  print("Elegible para el ascenso")
elif puntuacion >= 7 and ano_trabajo <= 5:
  print("Buen desempeño, sigue así")
else:
   print("Necesita mejorar")  
