0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-02-13 19:26:47 +00:00
2022-09-17 16:23:49 +08:00

5 lines
115 B (Stored with Git LFS)
Python

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