#include<iostream> using namespace std; int main(){ int i=0; for(double m=100;m>=0.5;m/=2){ i++; } cout<<i; return 0; }