decimal hou = 0.00007M;
for (int i = 1; i > 0; i++)
{
hou = hou * 2;
if (hou > 8848)
{
Console.WriteLine(i);
break;
}
}