9179: ABC204 —— B - Nuts
[Creator : ]
Description
There are $N$ trees. The $i$-th tree bears $A_i$ nuts.
Chipmunk will harvest nuts from the trees in the following manner:
- From a tree with $10$ or fewer nuts, she does not take nuts.
- From a tree with more than $10$ nuts, she takes all but $10$ nuts.
Find the total number of nuts Chipmunk will take from the trees.
Chipmunk will harvest nuts from the trees in the following manner:
- From a tree with $10$ or fewer nuts, she does not take nuts.
- From a tree with more than $10$ nuts, she takes all but $10$ nuts.
Find the total number of nuts Chipmunk will take from the trees.
Input
Input is given from Standard Input in the following format:
```
$N$
$A_1$ $\ldots$ $A_N$
```
```
$N$
$A_1$ $\ldots$ $A_N$
```
Output
Print the answer.
Constraints
- $1 \leq N \leq 1000$
- $0 \leq A_i \leq 1000$
- All values in input are integers.
- $0 \leq A_i \leq 1000$
- All values in input are integers.
Sample 1 Input
3
6 17 28
Sample 1 Output
25
From the three trees, Chipmunk will take 0, 7, and 18 nuts, for a total of 25 nuts.
Sample 2 Input
4
8 9 10 11
Sample 2 Output
1