f = float(input())

if f < 0:
    f = -f
    print('-',end='')  # 负数的立方根是复数,需要转换成正数

print(f'{f**(1/3):.1f}')