x = tuple(range(1,6))
print(x)
print(len(x))
y = tuple(range(6,11))
print(x+y)
print(len(x+y))