fork download
  1. x=int(input())
  2. l=0
  3. while x!=0:
  4. if x%3==0:
  5. l=l+1
  6. x=int(input())
  7. print(l)
Success #stdin #stdout 0.07s 14100KB
stdin
3
5
12
12
6
0
stdout
4