#include <iostream> using namespace std; int main() { int s=0; float h=8,H=8848000; do { s=s+1; h=h*2; } while (h<H); cout<<s; return 0; }