What is the output of the following code? class A: def __init__(self, x): self.x = x x = 44 a = A(4) print(a.x)