import time time.sleep(2) year = int(input ( "What is your year group? " )) if year >= 9 and year <= 10: time.sleep(2) print( "You are a junior student " ) elif year >= 11 and year <= 13: time.sleep(2) print( "You are a senior student " )