#include using namespace std; int main() { int X, Y, Z; cin >> X >> Y >> Z; if (Z < X) cout << Z << endl; else if (X <= Z && Z < Y) cout << Z - 1 << endl; else cout << Z - 2 << endl; }