Ответ:
lst_1 = list(map(int, input().split()))
lst_2 = list(map(int, input().split()))
lst_3 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
for i in range(len(lst_1)):
lst_3[i] += lst_1[i] + lst_2[i]
print(lst_1, lst_2, lst_3)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
lst_1 = list(map(int, input().split()))
lst_2 = list(map(int, input().split()))
lst_3 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
for i in range(len(lst_1)):
lst_3[i] += lst_1[i] + lst_2[i]
print(lst_1, lst_2, lst_3)