Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. n = -1
  2. max = 0
  3. quantity = 0
  4. while n != 0:
  5. n = int(input())
  6. if n > max:
  7. max = n
  8. quantity = 1
  9. elif n == max:
  10. quantity += 1
  11. print(quantity)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement