/* No.857 素振り https://yukicoder.me/problems/no/857 */ #include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); long long int x, y, z; cin >> x >> y >> z; if (y <= z) z -= 2; else if (x <= z && z < y) z -= 1; if (z <= 0) cout << 0 << endl; else cout << z << endl; }