#include int main() { long long x, y, z; std::cin >> x >> y >> z; if (z>=y) z--; if (z>=x) z--; std::cout << z; }