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