#ABC127B. Algae

Algae

题目描述

The development of algae in a pond is as follows.

Let the total weight of the algae at the beginning of the year ii be xix_i gram. For i2000i≥2000, the following formula holds:

  • xi+1=rxiDx_{i+1} = rx_i - D

You are given rr, DD and x2000x_{2000}. Calculate x2001x_{2001}, ......, x2010x_{2010} and print them in order.

池塘中藻类的发展情况如下。

假设年初 ii 水藻的总重量为 xix_i 克。对于 i2000i≥2000 ,下列公式成立:

  • xi+1=rxiDx_{i+1} = rx_i - D

给你 rrDDx2000x_{2000} 。计算 x2001x_{2001}......x2010x_{2010} ,并依次打印出来。

输入格式

输入内容按以下格式标准输入:

rr DD x2000x_{2000}

输出格式

打印 1010 行。 ii -th 行( 1i101 ≤ i ≤ 10 )应包含一个整数 x2000+ix_{2000+i}

样例 #1

样例输入 #1

2 10 20

样例输出 #1

30
50
90
170
330
650
1290
2570
5130
10250

样例 #2

样例输入 #2

4 40 60

样例输出 #2

200
760
3000
11960
47800
191160
764600
3058360
12233400
48933560

说明

数据规模与约定

  • 2r52 ≤ r ≤ 5
  • 1D1001 ≤ D ≤ 100
  • D<x2000200D \lt x_{2000} ≤ 200
  • 输入值均为整数。

样例 11 解释

例如, x2001=rx2000D=2×2010=30x_{2001} = rx_{2000} - D = 2 \times 20 - 10 = 30x2002=rx2001D=2×3010=50x_{2002} = rx_{2001} - D = 2 \times 30 - 10 = 50