let () = Scanf.scanf "%d %d %d\n" @@ fun x y z -> print_int (if x < y && y-x <= z then y + (z-y+x) / 2 else if x < y then x + z else if y <= x && x-y <= z then x + (z-y+x) / 2 else y + z)