PROGRAMMING:2-5. Calculate and output the percentage of integer a to integer B (real number)
Write a program to read two integers as follows, then show the percentage of the former is the latter, and output the result with real number.
```
Please enter two integers.
Integer a: 54 (enter)
Integer B: 84 (enter)
The value of X is 64.285714% of Y.
```
**Input example:**
```in
fifty-four
eighty-four
```
**Output example:**
```out
Please enter two integers.
Integer a: integer B: A is 64.285714% of B.
```
answer:If there is no answer, please comment
```
Please enter two integers.
Integer a: 54 (enter)
Integer B: 84 (enter)
The value of X is 64.285714% of Y.
```
**Input example:**
```in
fifty-four
eighty-four
```
**Output example:**
```out
Please enter two integers.
Integer a: integer B: A is 64.285714% of B.
```
answer:If there is no answer, please comment