m, n = map(int, input().split()) ans = m for _ in range(n): ans = ans * 2 / 3 + (ans + 1) / 3 print(ans)