#include <stdio.h>

int main() {
    int r;
    scanf("%d", &r);
    printf("%.2f", 4 * 3.14 * r * r * r / 3);
    return 0;
}