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