mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-22 20:06:33 +03:00
8 lines
172 B
Python
8 lines
172 B
Python
|
for x in range(101):
|
||
|
if x == 100:
|
||
|
x = ""
|
||
|
for y in range(10):
|
||
|
s = int(f"123{x}4{y}5")
|
||
|
if s % 161 == 0:
|
||
|
print(s, s // 161)
|