#include<iostream> using namespace std; int main(){ double a=3.1415926,r,v; cin>>r; v=4.0/3*3.1415926*r*r*r; printf("%.4lf",v); return 0; }