#include #define rep(i, ss, ee) for (int i = ss; i < ee; ++i) using namespace std; void solve() { unsigned long long x, y, z, ans = 0; cin >> x >> y >> z; if (x <= z) ans++; if (y <= z) ans++; cout << (z - ans) << endl; } int main() { cin.tie(0); ios::sync_with_stdio(false); solve(); getchar(); }