Problem taken from DMOJ
Simon got a new drill recently. Everyone knows that a drill is shaped like a right circular cone. Simon knows his drill has radius and height , But now he wants to calculate the volume. Write a program to help Simon!
Note: The formula for the volume of a cone is
Input Specification
The first line of input will have an integer .
The second line of input will have an integer .
Output Specification
The first line of output should have the volume of Simon's drill. Ensure that you are using , otherwise your solution will be marked wrong.
Sample Input
3
5
Sample Output
47.1
Comments