0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-21 10:45:24 +00:00
OI-codes/LibreOJ/6/data/maker.py

5 lines
115 B
Python

from random import randint
n = int(input())
print(n)
print(' '.join([str(randint(1, 1000000)) for i in range(n)]))