#include #include #include #include using namespace std; using ll = long long; using ull = unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) void testcase(){ double L; cin >> L; L /= 3; double ans = sqrt(3.0) / 4.0 * L * L; cout << setprecision(10) << fixed << ans << "\n"; } int main(){ testcase(); return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ ios::sync_with_stdio(false); cin.tie(nullptr); } } ios_do_not_sync_inst;