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