n= float(input())
x=1
while abs(x**3-n)>1e-7:
    x=x-(x**3-n)/(3*x**2)
print(round(x,1))
损失函数:loss=x**3-n
步长为:函数除以一阶导数:(x**3-n)/(3*x**2)