#include<iostream> using namespace std; int main(){ double h=100; int i; for(i=0;i<10;i++) h=h/2; printf("%.6f",h); return 0; }