I want in this question: high school= int(input("What year of high school are you in?")) if secondary <= 4: print("Ohhh you're just starting high school, it's one of the most important moments for a person's development, so make the most of it.") secondary elif >= 5: print("You're just about to finish, so I'm going to tell you something that I would have loved to know when I was your age. Those years are the most important so take advantage of it but don't neglect studying, always study even a little.") If I answer: I'm in 5th year, I get away with the elif
def add(a: int, b: int) -> int: return a + b