from math import sin, pi L = int(input()) x = L / 3 ans = 0.5 * x * x * sin(pi / 3) print(ans)