What is the output of the following piece of code?class Demo: def __init__(self): self.x = 1 def change(self): self.x = 10class Demo_derived(Demo): def change(self): self.x=self.x+1 return self.xdef main(): obj = Demo_derived() print(obj.change()) main()