fork download
  1. x=int(input())
  2. licznik=0
  3. while x!=0:
  4. if x%3==0: licznik+=1
  5. x=int(input())
  6. print(licznik)
  7.  
Success #stdin #stdout 0.13s 14140KB
stdin
4
2
6
7
9
0
stdout
2