[100 points] Fill in the missing word.

class CatLady(Exception):

pass


answer = input("How many cats do you have? ")

cats = int(answer)

try:

if cats > 5:

raise CatLady

else:

print("You have", cats, "cats")

__[BLANK]__ CatLady:

print("You have a lot of cats!")