3.py 71 B

12345
  1. k = 0
  2. for i in range(2, 10000000):
  3. if i % 2 == 0:
  4. k += 1
  5. print(k)