scripts/ege/28.03.2023 ПРОБНИК/Faily_IN11_28032023_/16.py
2023-05-05 00:45:01 +03:00

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)