题目描述
Your task is to calculate the sum of some integers.
输入
Input contains an integer N in the first line, and then N lines follow. Each line starts with a integer M, and then M integers follow in the same line.
输出
For each group of input integers you should output their sum in one line, and with one line of output for each line in input.
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,sum=0,a;
while(scanf(“%d”,&n)!=EOF){
while(n>0){
scanf(“%d”,&a);
n=n-1;
sum=sum+a;
}
cout<<sum<<endl;
sum=0;
}
return 0;
}