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