list1 = list(map(int, input().split()))
list2 = list(map(int, input().split()))
list3 = list1 + list2
list3.sort(reverse=True)
print(list3)
列表的合并与排序
阅读 118
2022-01-17
list1 = list(map(int, input().split()))
list2 = list(map(int, input().split()))
list3 = list1 + list2
list3.sort(reverse=True)
print(list3)
相关推荐
精彩评论(0)