mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-24 20:43:43 +03:00
6 lines
137 B
Python
6 lines
137 B
Python
|
for i in range(10):
|
||
|
for j in range(10):
|
||
|
s = int(f"12345{i}6{j}8")
|
||
|
if s % 17 == 0:
|
||
|
print(s, s // 17)
|