year = int(input("What is your year group?"))
if year < 11 :
    print("You are a junior student")
elif year > 10 :
    print("You are a senior student")
else : 
    print("That year group is invalid")