1421: 【入门】人口增长问题
Memory Limit:32 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:3
Solved:3
Description
我国现有x亿人口,按照每年0.1%的增长速度,n年后将有多少人?
Input
一行,包含两个整数x和n,分别是人口基数和年数,以单个空格分隔。
Output
输出最后的人口数,以亿为单位,保留到小数点后四位。1 <= x <= 100, 1 <= n <= 100。
Sample Input Copy
13 10
Sample Output Copy
13.1306