big = []
small = []
for i in range(15):
    small.append(0)
for i in range(25):
    big.append(small)
print(len(small)+"\n"len(big))