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