Start: Jul, 17, 2021 21:00:00
Practice Set | GZB1
End: Sep, 18, 2022 01:00:00
Time elapsed:
Time remaining:

GZB123折纸 2889

Time Limit:  1 s      Memory Limit:   256 MB
Submission:29     AC:4     Score:0

Description

有个科学猜想的节目内容是:如果有一张足够大的纸,其厚度为0.1毫米,对折一次纸的厚度翻一倍。根据题意,一张纸的厚度为h 毫米,请编写一个程序,求对折k次后纸的厚度(毫米)。


Input

一张纸的厚度h(0 < h < 5),对折的次数k(0 <= k <= 20)。

Output

对折k次后纸的厚度(毫米)(保留六位小数位数)

Samples

input
1 5
output
32
input
0.1 5
output
3.2