x,y,z = map(int, input().split()) if x < y: x,y = y,x ans = y x -= y if z > x: ans += x + (z-x)//2 else: ans += z print(ans)