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