name = input( "what is your year group? " ) junior = "9" juniors = "10" if name == juniors : print( "You are a junior student" ) elif name == junior : print( "You are a junior student" ) else : print( "You are senior student" )