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)
Success #stdin #stdout 0.1s 14116KB
stdin
2
6
9
12
0
stdout
3