#include using namespace std; int main(){ int x,y,d; cin >> x >> y >> d; cout << max(0,d + 1 - max(0,d - x) - max(0,d - y)) << endl; }