#include using namespace std; int main() { int x; scanf("%d", &x); double l = x / 9.0; printf("%.22lf", l * l * sqrt(3) * 9 / 4); return 0; }