Ingreso_Familiar= int(input('Digite el ingreso familiar mensual($)'))
Promedio_Estudiante= float(input('Digite el promedio del estudiante:'))
Asistencia= int(input('Digite la asistencia(%):'))
if ((Ingreso_Familiar<1500) and ( Promedio_Estudiante>8.0) and (Asistencia>=90)):
print('Beca completa')
elif ((Ingreso_Familiar<2500) and ( Promedio_Estudiante>7.0) and (Asistencia>=85)):
print('Media beca')
else:
print('No elegible para beca')