PROGRAMMING:A + B input output exercise (VIII)
The guys are back, ready for the last time. Really last time, I send four..
###Input format:
There is an integer t in the first line to represent the following groups of small partners. The first integer n in the next line represents the number of small partners in this group, and the last n integers represent the number of sugar each person takes.
###Output format:
Each row outputs the total amount of sugar taken by the corresponding group, and each group outputs one row. We separate the two groups of results with an empty row.
###Input example:
Here is a set of inputs. For example:
```in
three
4 1 2 3 4
5 1 2 3 4 5
3 1 2 3
```
###Output example:
The corresponding output is given here. For example:
```out
ten
fifteen
six
```
answer:If there is no answer, please comment
###Input format:
There is an integer t in the first line to represent the following groups of small partners. The first integer n in the next line represents the number of small partners in this group, and the last n integers represent the number of sugar each person takes.
###Output format:
Each row outputs the total amount of sugar taken by the corresponding group, and each group outputs one row. We separate the two groups of results with an empty row.
###Input example:
Here is a set of inputs. For example:
```in
three
4 1 2 3 4
5 1 2 3 4 5
3 1 2 3
```
###Output example:
The corresponding output is given here. For example:
```out
ten
fifteen
six
```
answer:If there is no answer, please comment