children_above_five= True
have_good_health= True
if children_above_five and have_good_health:
print("Eligible to get admission in Primary school.")
children_above_five= True
have_good_health= False
if children_above_five or have_good_health:
print("Eligible to get admission in Primary school.")
children_above_five= True
have_good_health= False
if children_above_five and not have_good_health:
print("Eligible to get admission in Primary school.")