inf-kswo/IO/Zufall Not quite.py
2025-01-20 19:41:45 +01:00

10 lines
121 B
Python
Executable File

import time
a = 5
c = 1
m = 32
x = int(time.time()) % m
for i in range(10):
x = (a*x + c) % m
print(x)