#include "bits/stdc++.h"
using namespace std;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i))
#define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i))
static const int INF = 0x3f3f3f3f; static const long long INFL = 0x3f3f3f3f3f3f3f3fLL;
typedef vector<int> vi; typedef pair<int, int> pii; typedef vector<pair<int, int> > vpii; typedef long long ll;
template<typename T, typename U> static void amin(T &x, U y) { if (y < x) x = y; }
template<typename T, typename U> static void amax(T &x, U y) { if (x < y) x = y; }

int main() {
	int M; int N;
	while (~scanf("%d%d", &M, &N)) {
		const double P = 1. / 3;
		vector<double> dp(N + 1);
		dp[0] = M;
		rep(i, N) {
			double x = 0;
			x += P * (dp[i] + 1);
			x += P * (dp[i] * 2);
			dp[i + 1] = x;
		}
		double ans = dp[N];
		printf("%.10f\n", ans);
	}
	return 0;
}