8 lines
85 B
Python
8 lines
85 B
Python
u = 2893
|
|
n = 143
|
|
|
|
for i in range(n):
|
|
u = ((u//100+u%100)*140+154)%9973
|
|
|
|
print(u)
|