100 atcoder#ABC127B. [ABC127B] Algae

[ABC127B] Algae

Score : 200200 points

Problem Statement

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 \geq 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.

Constraints

  • 2r52 \leq r \leq 5
  • 1D1001 \leq D \leq 100
  • D<x2000200D < x_{2000} \leq 200
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

rr DD x2000x_{2000}

Output

Print 1010 lines. The ii-th line (1i101 \leq i \leq 10) should contain x2000+ix_{2000+i} as an integer.

2 10 20
30
50
90
170
330
650
1290
2570
5130
10250

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

4 40 60
200
760
3000
11960
47800
191160
764600
3058360
12233400
48933560