As we know, Rikka is poor at math. Yuta is worrying about this situation, so he asks rikka to have some practice on codeforces. Then she opens the problem B:
Given an integer $K$, she needs to come up with an sequence of integers $A$ satisfying that the number of different continuous subsequence of $A$ is equal to $k$.
Two continuous subsequences $a,\ b$ are different if and only if one of the following conditions is satisfied:
1. The length of $a$ is not equal to the length of $b$.
2. There is at least one $t$ that $a_{t} \neq b_{t}$, where $a_{t}$ means the $t$-th element of $a$ and $b_{t}$ means the $t$-th element of $b$.
Unfortunately, it is too difficult for Rikka. Can you help her?