#include <bits/stdc++.h>
using namespace std;
int main(){
int h=0;
float i=100;
while(i>0.5){
i=i/2;
h++;
}
cout<<h;
}
/**************************************************************
Problem: 1062
User: 15159808820
Language: C++
Result: Accepted
Time:5 ms
Memory:2072 kb
****************************************************************/