1
0
mirror of https://github.com/Kiritow/OJ-Problems-Source.git synced 2024-03-22 13:11:29 +08:00
2016-07-06 14:28:18 +08:00

19 lines
228 B
C

/*
作者:千里冰封
题目:p1202 求和
*/
#include <stdio.h>
int main(int argc, char* argv[]) {
int a, b = 0;
scanf("%i", &a);
while(a--){
int l;
scanf("%i", &l);
b += l;
}
printf("%i", b);
return 0;
}