blueloveTH 0891000a46 init
2022-11-06 12:16:57 +08:00

5 lines
71 B
Python

k = 0
for i in range(2, 10000000):
if i % 2 == 0:
k += 1
print(k)