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