#include <bits/stdc++.h> using namespace std; int main(){ double h=100; int i; for(i=1;i<=10;i++){ h=h/2.0; } cout<<fixed<<setprecision(6)<<h<<endl; }