mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-15 01:16:36 +03:00
7 lines
143 B
Python
7 lines
143 B
Python
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)
|