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