class Proof:
    a=[]
    b=[]
    
    def __init__(self):
        print self.a, self.b, self
        self.a.append("STICKYARRAY")
        self.b=["NONSTICKY ASSIGN"]

if __name__ == "__main__":
    p1=Proof()
    p2=Proof()
    
