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