You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
162 B
Python

import random
with open("1.txt", "w") as f:
f.write("100000 1000000000\n")
for i in range(10**5):
f.write(str(random.randint(1, 10**9)) + " ")