#include using namespace std; int main(int argc, char *argv[]) { int64_t X, Y, Z; cin >> X >> Y >> Z; int64_t ans = Z - ((Z >= Y) ? 1 : 0) - ((Z >= X) ? 1 : 0); cout << ans << endl; return 0; }