Advertisement
Eshendo

Untitled

Apr 29th, 2020
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.07 KB | None | 0 0
  1. s = 0
  2. n = int(input())
  3. while n != 0:
  4.     s += n
  5.     n = int(input())
  6. print(s)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement