#P975B. Mancala

Mancala

Description

Mancala is a game famous in the Middle East. It is played on a board that consists of 14 holes.

Initially, each hole has aia_i stones. When a player makes a move, he chooses a hole which contains a positive number of stones. He takes all the stones inside it and then redistributes these stones one by one in the next holes in a counter-clockwise direction.

Note that the counter-clockwise order means if the player takes the stones from hole ii, he will put one stone in the (i+1)(i+1)-th hole, then in the (i+2)(i+2)-th, etc. If he puts a stone in the 1414-th hole, the next one will be put in the first hole.

After the move, the player collects all the stones from holes that contain even number of stones. The number of stones collected by player is the score, according to Resli.

Resli is a famous Mancala player. He wants to know the maximum score he can obtain after one move.

The only line contains 14 integers a1,a2,,a14a_1, a_2, \ldots, a_{14} (0ai1090 \leq a_i \leq 10^9) — the number of stones in each hole.

It is guaranteed that for any ii (1i141\leq i \leq 14) aia_i is either zero or odd, and there is at least one stone in the board.

Output one integer, the maximum possible score after one move.

Input

The only line contains 14 integers a1,a2,,a14a_1, a_2, \ldots, a_{14} (0ai1090 \leq a_i \leq 10^9) — the number of stones in each hole.

It is guaranteed that for any ii (1i141\leq i \leq 14) aia_i is either zero or odd, and there is at least one stone in the board.

Output

Output one integer, the maximum possible score after one move.

Samples

样例输入 1

0 1 1 0 0 0 0 0 0 7 0 0 0 0

样例输出 1

4

样例输入 2

5 1 1 1 1 0 0 0 0 0 0 0 0 0

样例输出 2

8

Note

In the first test case the board after the move from the hole with 77 stones will look like 1 2 2 0 0 0 0 0 0 0 1 1 1 1. Then the player collects the even numbers and ends up with a score equal to 44.