#include <iostream> #include <cmath> using namespace std; int main() { int r; cin>>r; printf("VOLUME = %.3f",(4/3.0)*3.14159*r*r*r); return 0; }