What would be the output of this code?
class A():
def show(self):
print("A.show() called.")
class B(A):
def show(self):
super().show()
print("B.show() called.")
b = B()
b.show()