You have an equilateral triangle with a height of $$$H$$$. You'll perform $$$K$$$ operations on it, in each operation the following is performed:

dividing to 4 equal triangles
Now, you're interested in finding the area of the triangle after $$$K$$$ steps. Can you do that?
The first and only line contains two integers $$$H$$$ and $$$K$$$ $$$(1 \le H \le 10^9$$$ , $$$0 \le K \le 10^5)$$$ — representing the initial height of the triangle, and the number of operations, respectively.
Print a single number, the area of the triangle after $$$K$$$ steps.
Your answer will be accepted if the absolute or relative error does not exceed $$$10^{-4}$$$
10 2
3.608439
5 0
14.433757
| Name |
|---|


