mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-25 21:13:43 +03:00
7 lines
143 B
Python
Vendored
7 lines
143 B
Python
Vendored
for i in range(10):
|
|
for j in range(10):
|
|
n = f"12345{i}7{j}8"
|
|
n = int(n)
|
|
if n % 23 == 0:
|
|
print(n)
|