mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-15 01:16:36 +03:00
7 lines
181 B
Python
7 lines
181 B
Python
for i in range(1, 100000):
|
|
n = str(i)
|
|
s = i
|
|
if s % 103 == 0:
|
|
if all([int(n[x]) > int(n[x - 1]) for x in range(1, len(n))]):
|
|
print(i, i // 103)
|