#include <stdio.h>#include <math.h>#define PI 3.1415927int main(int argc, const char * argv[]) { // insert code here... double r,v; while(scanf("%lf\n",&r)!=EOF) { v=4/3*PI*r*r*r; printf("%.3lf\n",v); } return 0;}