#abc247c. [abc247_c]1 2 1 3 1 2 1
[abc247_c]1 2 1 3 1 2 1
Problem Statement
We define sequences as follows.
- is a sequence of length containing a single .
- ( is an integer greater than or equal to ) is a sequence obtained by concatenating , , in this order.
For example, and is defined as follows.
- is a concatenation of , , and , in this order, so it is .
- is a concatenation of , , and , in this order, so it is .
Given , print the entire sequence .
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print , with spaces in between.
Sample Input 1
2
Sample Output 1
1 2 1
As described in the Problem Statement, is .
Sample Input 2
1
Sample Output 2
1
Sample Input 3
4
Sample Output 3
1 2 1 3 1 2 1 4 1 2 1 3 1 2 1
- is a concatenation of , , and , in this order.