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