#include <bits/stdc++.h>
using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  double N;
  cin>>N;
  cout<<setprecision(10)<<N*N*N*2.18169499062491237350<<'\n';
}