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