BlueBook
Suppose that a certain amount of money
Input Specification
The input will be listed on a single line starting with a decimal number
Output Specification
The output will be the year followed by the amount of money.
Sample Input 1
Copy
1000 8 3
Sample Output 1
Copy
0 1000.00
1 1080.00
2 1166.40
3 1259.71
Sample Input 2
Copy
20 8 0
Sample Output 2
Copy
0 20.00
NOTE: The amount of money must be rounded to 2 decimal places.
Comments