#include <iostream>
#include <iomanip>
using namespace std;

int main() {

    // 下落的高度和落地的次数
    double h;
    int n;
    double j,k=0;

    cin >> h;
    cin >> n;

    // write your code here......
    j=h;
    for(int i=1;i<=n-1;i++){
    	k+=j+j/2;
    	j=j/2;
	}
	k+=j;
    for(int i=1;i<=n;i++){
        h=h/2;
    }
    cout<<fixed;
	cout<<setprecision(1)<<k<<" "<<h;
    return 0;
}