Problem A: 【递归】【入门】莲花池中的莲花

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:311 Solved:163

Description

有个莲花池里起初有一只莲花,每过一天莲花的数量就会翻一倍。假设莲花永远不凋谢,m天的时候莲花池全部长满了莲花, 请问第n天的莲花占莲花池的几分之几?(用小数表示,保留小数点后7位)

Input

两个整数m,n   (3<=m,n<=30)

Output

一个小数,表示第n天莲花占莲花池的几分之几

Sample Input Copy

30 23

Sample Output Copy

0.0078125

HINT