#include <iostream> using namespace std; int main() { double height =100.0; for (int i = 1; i <= 9; i++) { height /= 2;} printf("%.6f",height/2); return 0; }