ingreso=float(input("Ingrese sus ingresos mensuales: "))
hijos=int(input("Ingrese la cantidad de hijos: "))
if ingreso<=2000 and hijos>=1:
print("Tiene derecho al beneficio.")
else:
print("No tiene derecho al beneficio.")
ingreso=float(input("Ingrese sus ingresos mensuales: "))
hijos=int(input("Ingrese la cantidad de hijos: "))
if ingreso<=2000 and hijos>=1:
print("Tiene derecho al beneficio.")
else:
print("No tiene derecho al beneficio.")