0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-27 14:36:27 +00:00

C - Pōja Verdon

https://codeforces.com/contest/1663/submission/152441012
This commit is contained in:
Baoshuo Ren 2022-04-02 08:31:32 +08:00
parent c01b620d0d
commit e3fad1d784
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

20
Codeforces/1663/C/C.cpp Normal file
View File

@ -0,0 +1,20 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int n, x, sum;
int main() {
std::ios::sync_with_stdio(false);
cin >> n;
while (n--) {
cin >> x;
sum += x;
}
cout << sum << endl;
return 0;
}