题解 | #无法更改的信息#
无法更改的信息
https://www.nowcoder.com/practice/0fce92fc0c7046038c185c0b3e7ed996
one = tuple(map(str,input().split())) two = tuple(map(str,input().split())) print(one) print(two) three = [] three.extend(list(one[:3])) three.extend((list(two[-3:]))) print(tuple(three))