PROGRAMMING:Finding the volume of a cylinder
Write a program, according to the user input radius R (integer), calculate the volume of the cylinder. The value of PI is 3.14159. The calculation formula of cylinder volume is as follows:
![ Cylinder volume formula. JPG] (~ / a976e4fd-c9fe-41f7-91f0-b02d9f103cc7. JPG)
###Input format:
Enter radius R (integer) and high H (integer)
###Output format:
Output volume of cylinder, keep 2 decimal places
###Input example:
```in
10 10
```
###Output example:
```out
v=3141.59
```
answer:If there is no answer, please comment
![ Cylinder volume formula. JPG] (~ / a976e4fd-c9fe-41f7-91f0-b02d9f103cc7. JPG)
###Input format:
Enter radius R (integer) and high H (integer)
###Output format:
Output volume of cylinder, keep 2 decimal places
###Input example:
```in
10 10
```
###Output example:
```out
v=3141.59
```
answer:If there is no answer, please comment