import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int r = in.nextInt(); double cir = (double) 4/3 * 3.14 * Math.pow(r,3); System.out.printf("%.2f",cir); } }