import sys

s = {0, 1}
for x in s:
    print(x, len(s), sys.getsizeof(s), s)
    s.remove(x)
    s.add(x + 2)
