class Parent:
	def method(self, n):
		print("Entering Parent.method")
		if n > 0:
			self.method(n - 1)
			
class Child(Parent):
	def method(self, n):
		print("Entering Child.method")
		super().method(n)

Child().method(3)
