class C:
    def __init__(self, data):
        self.data = data
    def pr(self):
        print self.data
C("OK").pr()
