#include <stdio.h> #define PI 3.1415926 int main() { double a,v; scanf("%lf",&a); v=(4.0/3)*(a*a*a*PI); printf("%.3lf",v); return 0; }