Blame view

python prototype/test.py 78 Bytes
a7d1504f   David Mayerich   added python prot...
1
2
3
4
5
6
7
8
  N = 10
  
  m = 31
  a = 4
  x = 3
  for i in range(N):
      x = (a * x) % m
      print(x)