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