#include using namespace std; int main(){ cout << fixed << setprecision(20); double L; cin >> L; cout << sqrt(3) / 4 * (L / 3) * (L / 3) << endl; }