#define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include #include #include #include #include #include #include //#include "util.h" using namespace std; typedef long long ll; typedef unsigned long long ull; #define PI 3.14159265358979323846 #define EPS 1e-6 #define MIN(a,b) ((a)<(b)?(a):(b)) #define MAX(a,b) ((a)>(b)?(a):(b)) #define CHAR_BIT 8 #define all(x) (x).begin(), (x).end() template ostream& operator << (ostream& ostr, const vector<_Ty>& v) { if (v.empty()) { cout << "{ }"; return ostr; } cout << "{" << v.front(); for (auto itr = ++v.begin(); itr != v.end(); itr++) { cout << ", " << *itr; } cout << "}"; return ostr; } int yuki0131() { ll x, y, d; cin >> x >> y >> d; if (d <= x && d <= y) cout << d + 1 << endl; else if (x < d && y < d) cout << max(x + y - d + 1, (ll)0) << endl; else cout << (x < y ? x + 1 : y + 1) << endl; return 0; } int main() { //clock_t start, end; //start = clock(); yuki0131(); //end = clock(); //printf("%d msec.\n", end - start); return 0; }