#include<stdio.h>
using namespace std;
int main()
{
int n,cnt=0;
scanf("%d",&n);

while(n>1){
cnt++; n/=2;
}
cnt++;
printf("%d",cnt);
return 0;
}