Advertisement
smmac72

task10

May 30th, 2023
847
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. inp = -1
  2. counter = 0
  3.  
  4. while inp != 0:
  5.     inp = int(input())
  6.     if inp > 100:
  7.         counter += 1
  8.  
  9. print(counter)
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement