// #define _GLIBCXX_DEBUG #include using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); ++i) int main() { // Input long long X, Y, Z; cin >> X >> Y >> Z; // Output if (Z < X) cout << Z << endl; else if (Z < Y) cout << Z - 1 << endl; else cout << Z - 2 << endl; }