#盲猜的写法
v = tuple(i for i in range(1,6))
print(v)
print(len(v))
v2 = tuple(i for i in range(6,11))
print(v+v2)
print(len(v+v2))