Run ID:71502

提交时间:2024-04-24 22:02:08

def f(x,n): if n==0: return x else: return x/(n+f(x,n-1)) a,b = list(map(int,input().split())) c = f(a,b) print("%.2f" % c)