Sichanov

7

May 30th, 2021
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. n = int(input())
  2. sum = 0
  3.  
  4. for i in range(0, n):
  5.     num = int(input())
  6.     sum += num
  7.  
  8. print(sum)
Advertisement
Add Comment
Please, Sign In to add comment