x,y,d = map(int,input().split()) ans = d + 1 ans -= max(0, d-x) ans -= max(0, d-y) print(max(0, ans))