1 #include<stdio.h> 2 #define PI 3.1415927 3 int main() 4 { 5 double r; 6 while(~scanf("%lf",&r)) 7 printf("%.3lf\n",4.0/3*PI*r*r*r); 8 return 0; 9 }