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