Pls help (checking variables + text)

I want to make character in my game, who will give a conundrum (secret) to player.

I make “question” var and this scene

*input_text question
*if question = “dragon”
*goto 67p
*elseif question = “Dragon”
*goto 67p
*elseif
*goto 98p

What kind of symbol or smth else I must write after third elseif to check any word, what player may print in this scene?

Again - sry for my English ))

*input_text question
*if (question = "dragon") or (question = "Dragon")
  *goto 67p
*else
  *goto 98p

If you simply want to check if dragon or Dragon is entered, otherwise send the user somewhere else, that’s all you need.

It’s so easy -_- Thank you )