import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int z = sc.nextInt(); int ans = 0; if (x >= y) { ans += y; x -= y; ans += Math.min(x, z); z -= x; if (z > 0) { ans += z / 2; } } else { ans += x; y -= x; ans += Math.min(y, z); z -= y; if (z > 0) { ans += z / 2; } } System.out.println(ans); } }