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