8 lines
145 B
Python
8 lines
145 B
Python
|
|
seed = 675248
|
||
|
|
def random():
|
||
|
|
global seed
|
||
|
|
seed = int(str(seed ** 2).zfill(12)[3:9])
|
||
|
|
return seed
|
||
|
|
for _ in range(5):
|
||
|
|
print(random())
|