approximate-gcd/gen_values.py

7 lines
168 B
Python

from random import randint
p = randint(100,1000)
a = ["Integer::from("+str(p*randint(1,100)+randint(0,20))+"), " for _ in range(200)]
for b in a:
print(b)
print(p)