import random
random.seed (27634327643)

n = 10 ** 6
a = [random.randint (-10 ** 12, +10 ** 12) for i in range (n)]
print (n)
print (*a)
