1a = {i: 2*i for i in range(100)}
2b = a.copy()
3for i in range(100):
4    print(i, b[i])
5print(len(b))
6