#ARC079B. [ABC068D] Decrease (Contestant ver.)

[ABC068D] Decrease (Contestant ver.)

Score : 600600 points

Problem Statement

We have a sequence of length NN consisting of non-negative integers. Consider performing the following operation on this sequence until the largest element in this sequence becomes N1N-1 or smaller.

  • Determine the largest element in the sequence (if there is more than one, choose one). Decrease the value of this element by NN, and increase each of the other elements by 11.

It can be proved that the largest element in the sequence becomes N1N-1 or smaller after a finite number of operations.

You are given an integer KK. Find an integer sequence aia_i such that the number of times we will perform the above operation is exactly KK. It can be shown that there is always such a sequence under the constraints on input and output in this problem.

Constraints

  • 0K50×10160 \leq K \leq 50 \times 10^{16}

Input

Input is given from Standard Input in the following format:

KK

Output

Print a solution in the following format:

NN

a1a_1 a2a_2 ... aNa_N

Here, 2N502 \leq N \leq 50 and 0ai1016+10000 \leq a_i \leq 10^{16} + 1000 must hold.

0
4
3 3 3 3
1
3
1 0 3
2
2
2 2

The operation will be performed twice: [2, 2] -> [0, 3] -> [1, 1].

3
7
27 0 0 0 0 0 0
1234567894848
10
1000 193 256 777 0 1 1192 1234567891011 48 425