Respuesta :

Answer:

user_grade = int(input())

if 9<= user_grade <= 12:

   print("in high school")

Explanation:

*The code is in Python.

Get the input from the user and assign it to the  user_grade

Check the value of the  user_grade using if structure. If it is between 9 and 12 (inclusive), print "in high school" message