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