You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
vector<int> v1;
|
|
while (true) {
|
|
int c;
|
|
cin >> c;
|
|
if (c == 0)break;
|
|
v1.push_back(c);
|
|
}
|
|
if (v1.size() % 2 == 1) cout << v1[v1.size() / 2] << endl;
|
|
else cout << v1[v1.size() / 2 - 1] + v1[v1.size() / 2] << endl;
|
|
return 0;
|
|
}
|