题解

刘岩松  •  10个月前


include <bits/stdc++.h>

using namespace std;

int main() {

int a, b, c;
scanf("%d%d%d", &a, &b, &c);
int d = (a + b + c) / 3;
printf("%d", d);
return 0;

}


评论:

请先登录,才能进行评论