As a cold-blooded, hot-blooded, and iron-blooded vampire, Shinobu likes to build segment trees.
She uses the $build()$ function to build a segment tree, and the process of building the segment tree will increase the value of some numbers.
The specific content of the $build()$ function is as follows:
```
void build(int id, int l, int r){
value[id] += r-l+1;
if(l == r) return;
int mid = (r+l)/2;
build(id*2, l, mid);
build(id*2+1, mid+1, r);
return;
}
```
For example, if Shinobi calls $build(1,1,2)$ once, then $value[1]$ will increase by $2$, $value[2]$ and $value[3]$ will increase by $1$.
In the long life of a vampire, Shinobu builds a segment tree every day. She has been doing this since day $1$, and on the $i$-th day, she will call $build(1,1,i)$ to build a segment tree.
As a fan of Shinobi, playf got a fan number $x$. Now he wants to ask you a question: what the $value[x]$ will be at the end of the $n$-th day ?
Attention: The initial value of all values is 0.