#include<bits/stdc++.h> using namespace std; int main() { double r; cin>>r; cout<<fixed<<setprecision(6)<<4.0/3*3.14*pow(r,3); return 0; }