include <stdio.h>main(){float sum=0.0001;int n=0;while(sum<8843.13){sum=sum*2;n=n+1;}printf("n=%d",n);return 0;}