#Tupel
point = (3,4,5)
x,y,z = point
print(x,y,z)
points = [(3,4), (5,6), (7,8)]
a, b = points[2]
print(points, points[2], a, b)