Sofya_Soloveva_

Untitled

Jul 12th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. n = int(input())
  2. k = 0
  3. s = 0
  4. while n != 0:
  5.     s += n
  6.     n = int(input())
  7.     k += 1
  8. sr = s/k
  9. print(k)
  10. print(s)
  11. print(sr)
Advertisement
Add Comment
Please, Sign In to add comment