运行以下程序,输出结果是?( )
class A(): def __init__(self,value): self.value=value*value b=A(3) print(b.value)
9
6
3
3*3