using namespace std;
int main(){ int r; double pi = 3.14159; scanf(“%d”, &r); printf(“VOLUME = %.3lf”, (4/3.0) * pi * pow(r, 3));
return 0;
}