#这样算不算用函数库?
n = float(input())
if n > 0:
    print(round(n**(1/3), 1))
else:
    n = -n
    print(-round(n**(1/3), 1))