a = float(input())
if a>0:
    print(round(a **(1/3),1))
else:
    print(round(abs(a) **(1/3) *(-1),1))