x, y, d = gets.split.map(&:to_i) ans = if x + y < d 0 else (d + 1) - [0, d - x].max - [0, d - y].max end puts ans