#abc159c. [abc159_c]Maximum Volume

[abc159_c]Maximum Volume

Problem Statement

Given is a positive integer LL. Find the maximum possible volume of a rectangular cuboid whose sum of the dimensions (not necessarily integers) is LL.

Constraints

  • 1L10001 ≤ L ≤ 1000
  • LL is an integer.

Input

Input is given from Standard Input in the following format:

LL

Output

Print the maximum possible volume of a rectangular cuboid whose sum of the dimensions (not necessarily integers) is LL. Your output is considered correct if its absolute or relative error from our answer is at most 10610^{-6}.


Sample Input 1

3

Sample Output 1

1.000000000000

For example, a rectangular cuboid whose dimensions are 0.80.8, 11, and 1.21.2 has a volume of 0.960.96.

On the other hand, if the dimensions are 11, 11, and 11, the volume of the rectangular cuboid is 11, which is greater.


Sample Input 2

999

Sample Output 2

36926037.000000000000