Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #дано число n и дано n чисел, найти их сумму
- n = int(input())
- #a = []
- #for i in range(n): дан массив в разных строках
- # x = int(input())
- # a.append(x)
- a = list(map(int, input().split())) #дан массив в одной строке
- print(sum(a))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement