以下のコードの空欄に入る適切なコードは何ですか? ```ruby class Character def ______(name, hp) @name = name @hp = hp end end hero = Character.new("勇者", 200) ```