year_group = int(input("What is your year group? ")) if year_group < 13: if year_group < 11: print("You are a junior student") else: print("You are a intermediate student") else: print("You are a senior student")