main()
{int i;
float temp=100,total=100;
for(i=1;i<=9;i++)
total+=temp;
temp=temp/2;
}
printf("total=%f,temp=%f",total,temp);