#include using namespace std; int main() { int L, R, M; scanf("%d %d %d", &L, &R, &M); int ans = min(R - L + 1, M); printf("%d\n", ans); return 0; }