fork(1) 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.07s 14088KB
stdin
4
1
2
3
4
0
stdout
1