def println(*args): print "".join([ str(i) for i in args])
def print_(o): sys.stdout.write(str(o)) sys.stdout.flush()
def __str__(self): return "[%s]" % (', '.join([str(i) for i in self]))