#include<math.h> #include<stdio.h> #define PI 3.14 int main() { double a; scanf("%lf", &a); printf("%.2lf", 4 / 3.0 * PI * pow(a, 3)); return 0; }