f = float(input())
print("%.1f" % f ** (1/3)) if f >= 0 else print("%.1f" % -(-f) ** (1/3))