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)