#include<iostream>
using namespace std;
int main()
{
int n = 4095;
int count = 0;
while (n != 0)
count++;
n >>= 1;
}
cout << count;
return 0;