Score : $200$ points
Given a positive integer $N$, find the maximum integer $k$ such that $2^k \le N$.
Input is given from Standard Input in the following format:
$N$
Print the answer as an integer.
6
2
Therefore, the answer is $k=2$.
1
0
Note that $2^0=1$.
1000000000000000000
59
The input value may not fit into a $32$-bit integer.