class A:
	hui = 10
	def __init__(self, n):
		self.n = n
	def test(self):
		print(A.hui + self.n)

o1 = A(5)
o2 = A(10)
o1.test()
o2.test()