#include using namespace std; typedef long long ll; typedef string str; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); double n; cin >> n; cout << fixed << setprecision(20); cout << (5.0 * (3.0 + sqrt(5.0)) / 12.0) * pow(n, 3); return 0; }