PROGRAMMING:Make a little progress every day
The 365th power of 1.01 is about equal to 37.78, which means a little progress every day, a year in a row, and the amount of progress is very considerable. Receive a * * integer n * * from the keyboard, assuming that the input n must be between 360 and 366 (including the boundary). Calculate the nth power of 1.01, denoted as a; Calculate the nth power of 0.99, denoted as B. Then calculate the percentage of a in B, that is, multiply a by 100 and divide by B. When outputting three data, the first two data retain * * two decimal places * *, and the last data retain * * one decimal place * *.
###Input format:
Enter an integer that must be between 360 and 366.
###Output format:
Two decimals and a percentage are separated by a space.
###Input example:
Enter 365 and press enter to represent the number of days in a year.
```in
three hundred and sixty-five
```
###Output example:
Two decimal places are reserved for the first two data, one decimal place is reserved for the third data, followed by * * a percentage sign * *, and there is only one space between the data. The so-called * * reservation * * refers to rounding.
```out
37.78 0.03 148066.0%
```
answer:If there is no answer, please comment
###Input format:
Enter an integer that must be between 360 and 366.
###Output format:
Two decimals and a percentage are separated by a space.
###Input example:
Enter 365 and press enter to represent the number of days in a year.
```in
three hundred and sixty-five
```
###Output example:
Two decimal places are reserved for the first two data, one decimal place is reserved for the third data, followed by * * a percentage sign * *, and there is only one space between the data. The so-called * * reservation * * refers to rounding.
```out
37.78 0.03 148066.0%
```
answer:If there is no answer, please comment