#include using namespace std; typedef long long ll; int main() { cin.tie(0); ios::sync_with_stdio(false); double M; int N; cin >> M >> N; for(int i = 0; i < N; i++) { M = M * 2.0 / 3.0 + (M + 1) / 3.0; } cout << fixed << setprecision(15) << M << endl; }