#include <cstdio> int main() { int R; scanf("%d", &R); printf("VOLUME = %.3lf", (4.0/3)*3.14159*R*R*R); return 0; }