// yuki 920 あかあお // 2019.11.9 bal4u #include int main() { int X, Y, Z, ans, t; scanf("%d%d%d", &X, &Y, &Z); if (X > Y) t = X, X = Y, Y = t; ans = X, Y -= X; if (Z <= Y) ans += Z; else ans += Y + (Z-Y)/2; printf("%d\n", ans); return 0; }