#include using namespace std; int N,cnt; int main() { scanf("%d",&N); if(N==0) cnt=1; for(;N;N>>=1) cnt++; printf("%d\n",cnt); return 0; }