In front of Super Mario there are
mushrooms, arranged in a row. A certain amount of points is awarded for picking each of the mushrooms. Super Mario must pick mushrooms in order they appear, but is not required to pick them all – his goal is to score a number of points as close as possible to
. In case there exist two such numbers which are equally close to
(e.g.
and
), Mario will pick the greater one (in this case
).
Help Super Mario and tell him how many points he will score.
Input Specification
Input consists of
lines, each of which contains one positive integer less than or equal to
, denoting the scores awarded for picking each mushroom, in the order that Mario can pick them in.
Output Specification
The first and only line of output must contain the required number of points.
Sample Input 1
Copy
10
20
30
40
50
60
70
80
90
100
Sample Output 1
Copy
100
Sample Input 2
Copy
1
2
3
5
8
13
21
34
55
89
Sample Output 2
Copy
87
Sample Input 3
Copy
40
40
40
40
40
40
40
40
40
40
Sample Output 3
Copy
120
Comments