n = input() if n[0] != "-": num = float(n) ** 0.333 print(round(num, 1)) else: num = float(n[1:]) ** 0.333 print(-round(num, 1))