Arkady decides to observe a river for _n_ consecutive days. The river's water level on each day is equal to some real value.
Arkady goes to the riverside each day and makes a mark on the side of the channel at the height of the water level, but if it coincides with a mark made before, no new mark is created. The water does not wash the marks away. Arkady writes down the number of marks strictly above the water level each day, on the _i_\-th day this value is equal to _m__i_.
Define _d__i_ as the number of marks strictly under the water level on the _i_\-th day. You are to find out the minimum possible sum of _d__i_ over all days. There are no marks on the channel before the first day.
## Input
The first line contains a single positive integer _n_ (1 ≤ _n_ ≤ 105) — the number of days.
The second line contains _n_ space-separated integers _m_1, _m_2, ..., _m__n_ (0 ≤ _m__i_ < _i_) — the number of marks strictly above the water on each day.
## Output
Output one single integer — the minimum possible sum of the number of marks strictly below the water level among all days.
[samples]
## Note
In the first example, the following figure shows an optimal case.
<center></center>Note that on day 3, a new mark should be created because if not, there cannot be 3 marks above water on day 4. The total number of marks underwater is 0 + 0 + 2 + 0 + 3 + 1 = 6.
In the second example, the following figure shows an optimal case.
<center></center>