Run ID:123585
提交时间:2025-07-06 13:29:46
#include<bits/stdc++.h> using namespace std; int main() { int a, b = 0; for (int x = 0; x <= 7; x++) { cin >> a; b += a; } cout << b / 7; return 0; }