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