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