#P1873C. Target Practice
Target Practice
No submission language available for this problem.
Description
A target is made out of five "rings" as shown. Each ring has a different point value: the outermost ring — 1 point, the next ring — 2 points, ..., the center ring — 5 points.

Vlad fired several arrows at the target. Help him determine how many points he got.
The input consists of multiple test cases. The first line of the input contains a single integer () — the number of test cases.
Each test case consists of 10 lines, each containing 10 characters. Each character in the grid is either (representing an arrow) or (representing no arrow).
For each test case, output a single integer — the total number of points of the arrows.
Input
The input consists of multiple test cases. The first line of the input contains a single integer () — the number of test cases.
Each test case consists of 10 lines, each containing 10 characters. Each character in the grid is either (representing an arrow) or (representing no arrow).
Output
For each test case, output a single integer — the total number of points of the arrows.
Note
In the first test case, there are three arrows on the outer ring worth 1 point each, two arrows on the ring worth 3 points each, and two arrows on the ring worth 4 points each. The total score is .
In the second test case, there aren't any arrows, so the score is .