#include<stdio.h>
int main()
{
    double V;
    float r;
    scanf("%f",&r);
    V=3.1415926*pow(r,3)*(4.0/3);
    printf("%.3f",V);
return 0;
}