mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-14 09:06:32 +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)
|