Score : $300$ points
We define sequences $S_n$ as follows.
For example, $S_2$ and $S_3$ is defined as follows.
Given $N$, print the entire sequence $S_N$.
Input is given from Standard Input in the following format:
$N$
Print $S_N$, with spaces in between.
2
1 2 1
As described in the Problem Statement, $S_2$ is $1,2,1$.
1
1
4
1 2 1 3 1 2 1 4 1 2 1 3 1 2 1