class Se:
	i = 1
	def Print(self):
		print(self.i)

se = Se()
se.Print()
