public class Test2 {
public void run(){
double h=0.5;
int cont=0;
// 统计对折次数
while (true){
if (h<=8844430){
h*=2;
}else {
break;
}
cont++;
}
System.out.println(cont);
}
public static void main(String[] args) {
new Test2().run();
}
}