Respuesta :

Answer:

age = int(input("Enter your age: "))

if age >= 4 and age <= 16:

   print("You are in school")

else:

   print("You are not in school age")

Explanation:

since you didnt mention the program you’re using, im going to answer it using python. if there's anything to amend let me know!