while True:
try:
n=float(input())
if n>=0:
out=n**(1/3)
out=format(out,'.1f')
else:
out=(-n)**(1/3)
out=format(-out,'.1f')
print(out)
except:
break

京公网安备 11010502036488号