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