#include #include #include using namespace std; int main(){ double l; cin >> l; double width,height; width = l/6; height = sqrt(-pow(l/6,2) + pow(l/3,2)); cout << fixed << setprecision(15) << width * height << endl; }