ingresoMensual = float(input("Indique su ingreso mensual: "))
cantidadHijos = int(input("Cuantos hijos tiene: "))
if ingresoMensual < 2001 and cantidadHijos > 0:
print("Usted tiene derecho al beneficio social.")
else:
print("Usted no tiene derecho al beneficio social.")