Ddimov90

sum_numbers_07_01

Oct 3rd, 2025
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | Source Code | 0 0
  1. total_numbers = int(input())
  2.  
  3. total = 0
  4.  
  5. for num in range(0,total_numbers):
  6.     current_num = int(input())
  7.     total += current_num
  8.  
  9. print(total)
Advertisement
Add Comment
Please, Sign In to add comment