alumno = int( input("Ingresar edad de alumno: "))
if alumno <= 0 :
print("error")
elif alumno < 6:
print("Receso de 9:00am-10:15am")
elif alumno >= 7 and alumno < 10:
print("Receso de 10:00am-11:00am")
elif alumno >= 11 and alumno <=12:
print("Receso de 11:00am-11:30am")
elif alumno > 12 and alumno <= 16:
print("Receso de 11:15am-11:30am")
elif alumno>=17:
print("No tendra descanso")
To embed this program on your website, copy the following code and paste it into your website's HTML: