#include <cstdio> #include <cmath> #include <iostream> using namespace std; int main() { double a=3.14159,b; scanf("%lf", &b); printf("VOLUME = %.3lf", (4/3.0)*a*b*b*b); return 0; }