mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-22 11:56:33 +03:00
15 lines
254 B
Python
15 lines
254 B
Python
res = []
|
|
|
|
for x in range(0, 1001):
|
|
for y in range(10):
|
|
if x == 1000:
|
|
rx = ""
|
|
else:
|
|
rx = x
|
|
|
|
r = int(f"123{rx}4{y}5")
|
|
if r % 3013 == 0:
|
|
res.append(r)
|
|
|
|
print(sorted(res))
|