class Bird:
def birdsong(self):
raise NotImplementedError
class Chicken(Bird):
print("짹짹")
my_chicken = Chicken()
my_chicken.birdsong()