以下のクラス定義で、インスタンス作成時に必要な引数はいくつですか? ```python class Book: def __init__(self, title, author, pages): self.title = title self.author = author self.pages = pages ```