#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { int X, Y, Z; cin >> X >> Y >> Z; int ans = min(X, Y); int amari1 = max(X, Y) - ans; int temp = min(amari1, Z); ans += temp; amari1 -= temp; Z -= temp; if (Z != 0) { ans += Z / 2; } cout << ans << endl; return 0; }