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