#include int main() { int L, R, M; std::cin >> L >> R >> M; std::cout << std::min(R - L + 1, M) << std::endl; return 0; }