#include<stdio.h>
#include<math.h>
#define PI 3.1415927
int main()
{
double a;
while(scanf("%lf",&a)!=EOF)
{ printf("%.3lf ",4*PI*pow(a,3)/3);
}