mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-22 11:56:33 +03:00
9 lines
161 B
Python
Vendored
9 lines
161 B
Python
Vendored
c = 0
|
|
for n in range(123_456_789, 1_234_567_886):
|
|
if n % 15 != 0:
|
|
if n % 3 != 0:
|
|
if n % 5 != 0:
|
|
c += 1
|
|
|
|
print(c)
|